diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2019-12-16 15:27:10 +0530 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2020-01-08 12:58:06 +0530 |
commit | 748e3456b240061fcbcea663d28040bf426c9594 (patch) | |
tree | c2e153ea0de21402b31f19a3d200a5743ed13319 /drivers/phy | |
parent | 6825cfc94825c3170feef946e926f1551a8a25c9 (diff) | |
download | linux-748e3456b240061fcbcea663d28040bf426c9594.tar.bz2 |
phy: cadence: Sierra: Use correct dev pointer in cdns_sierra_phy_remove()
commit 44d30d622821d3b ("phy: cadence: Add driver for Sierra PHY"),
incorrectly used parent device pointer to get driver data. Fix it here.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy')
-rw-r--r-- | drivers/phy/cadence/phy-cadence-sierra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/cadence/phy-cadence-sierra.c b/drivers/phy/cadence/phy-cadence-sierra.c index 82466d0e9b38..eb87f1a0a596 100644 --- a/drivers/phy/cadence/phy-cadence-sierra.c +++ b/drivers/phy/cadence/phy-cadence-sierra.c @@ -625,7 +625,7 @@ clk_disable: static int cdns_sierra_phy_remove(struct platform_device *pdev) { - struct cdns_sierra_phy *phy = dev_get_drvdata(pdev->dev.parent); + struct cdns_sierra_phy *phy = platform_get_drvdata(pdev); int i; reset_control_assert(phy->phy_rst); |