From: Thierry Reding Date: Wed, 25 Feb 2015 15:16:29 +0000 (+0100) Subject: phy: Find the right match in devm_phy_destroy() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2f1bce487cd0a02623cff3d877940f9a2026341c;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git phy: Find the right match in devm_phy_destroy() devm_phy_create() stores the pointer to the new PHY at the address returned by devres_alloc(). The res parameter passed to devm_phy_match() is therefore the location where the pointer to the PHY is stored, hence it needs to be dereferenced before comparing to the match data in order to find the correct match. Cc: # v3.13+ Signed-off-by: Thierry Reding Signed-off-by: Kishon Vijay Abraham I --- diff --git a/drivers/phy/phy-core.c b/drivers/phy/phy-core.c index a12d35338313..04fc84f2b289 100644 --- a/drivers/phy/phy-core.c +++ b/drivers/phy/phy-core.c @@ -52,7 +52,9 @@ static void devm_phy_consume(struct device *dev, void *res) static int devm_phy_match(struct device *dev, void *res, void *match_data) { - return res == match_data; + struct phy **phy = res; + + return *phy == match_data; } /**