diff options
author | Jisheng Zhang <jszhang@marvell.com> | 2015-12-04 13:57:01 (GMT) |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2015-12-20 12:13:12 (GMT) |
commit | c3ab642f2f08349c41f7d837f224ce1e63b58197 (patch) | |
tree | f36c986c8b06344d322a62f4278c0946bad7443c | |
parent | c7a0b20ed42c0f4e1f80e7a9dfa6502894a82e22 (diff) | |
download | linux-c3ab642f2f08349c41f7d837f224ce1e63b58197.tar.xz |
phy: berlin-usb: don't set device's driver_data
After commit 739ae3452d0e ("phy: berlin-usb: Set drvdata for phy and
use it"), we get the address of priv by phy_get_drvdata(), so there's
no need to set device's driver_data any more. This patch removes the
call of platform_set_drvdata().
Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
-rw-r--r-- | drivers/phy/phy-berlin-usb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/phy/phy-berlin-usb.c b/drivers/phy/phy-berlin-usb.c index 7bbb473..2017751 100644 --- a/drivers/phy/phy-berlin-usb.c +++ b/drivers/phy/phy-berlin-usb.c @@ -193,7 +193,6 @@ static int phy_berlin_usb_probe(struct platform_device *pdev) return PTR_ERR(phy); } - platform_set_drvdata(pdev, priv); phy_set_drvdata(phy, priv); phy_provider = |