From: Libo Chen Date: Mon, 19 Aug 2013 12:00:25 +0000 (+0800) Subject: net: xilinx_emaclite: use platform_{get,set}_drvdata() X-Git-Tag: next-20130822~75^2~29 X-Git-Url: https://git.kernelconcepts.de/?a=commitdiff_plain;h=34e0184d98bd3a0e19b1d55bfdbd2186bfe5eca4;p=karo-tx-linux.git net: xilinx_emaclite: use platform_{get,set}_drvdata() Use the wrapper functions for getting and setting the driver data using platform_device instead of using dev_{get,set}_drvdata() with &of_dev->dev, so we can directly pass a struct platform_device. Signed-off-by: Libo Chen Acked-by: Michal Simek Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/xilinx/xilinx_emaclite.c b/drivers/net/ethernet/xilinx/xilinx_emaclite.c index fd4dbdae5331..7c1ccbcb47be 100644 --- a/drivers/net/ethernet/xilinx/xilinx_emaclite.c +++ b/drivers/net/ethernet/xilinx/xilinx_emaclite.c @@ -1230,8 +1230,7 @@ error: */ static int xemaclite_of_remove(struct platform_device *of_dev) { - struct device *dev = &of_dev->dev; - struct net_device *ndev = dev_get_drvdata(dev); + struct net_device *ndev = platform_get_drvdata(of_dev); struct net_local *lp = netdev_priv(ndev);