]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net: phy: mdio-mux-bcm-iproc: simplify getting .driver_data
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Sun, 21 Oct 2018 20:00:20 +0000 (22:00 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 22 Oct 2018 04:10:12 +0000 (21:10 -0700)
We should get 'driver_data' from 'struct device' directly. Going via
platform_device is an unneeded step back and forth.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/mdio-mux-bcm-iproc.c

index c017486e9b86802dfc9834c52e2823b9b83ea248..696bdf1e457635756ac763fe3c9862b28eb857c9 100644 (file)
@@ -289,8 +289,7 @@ static int mdio_mux_iproc_remove(struct platform_device *pdev)
 #ifdef CONFIG_PM_SLEEP
 static int mdio_mux_iproc_suspend(struct device *dev)
 {
-       struct platform_device *pdev = to_platform_device(dev);
-       struct iproc_mdiomux_desc *md = platform_get_drvdata(pdev);
+       struct iproc_mdiomux_desc *md = dev_get_drvdata(dev);
 
        clk_disable_unprepare(md->core_clk);
 
@@ -299,8 +298,7 @@ static int mdio_mux_iproc_suspend(struct device *dev)
 
 static int mdio_mux_iproc_resume(struct device *dev)
 {
-       struct platform_device *pdev = to_platform_device(dev);
-       struct iproc_mdiomux_desc *md = platform_get_drvdata(pdev);
+       struct iproc_mdiomux_desc *md = dev_get_drvdata(dev);
 
        clk_prepare_enable(md->core_clk);
        mdio_mux_iproc_config(md);