From: Libo Chen Date: Mon, 19 Aug 2013 11:59:36 +0000 (+0800) Subject: net: sunhme: use platform_{get,set}_drvdata() X-Git-Tag: accepted/tizen/common/20141203.182822~1569^2~241 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=511c4e00f8fa5f7d20baabda8b9504af71b88a49;p=platform%2Fkernel%2Flinux-arm64.git net: sunhme: 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, so we can directly pass a struct platform_device. Signed-off-by: Libo Chen Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/sun/sunhme.c b/drivers/net/ethernet/sun/sunhme.c index 171f5b0..b90d311 100644 --- a/drivers/net/ethernet/sun/sunhme.c +++ b/drivers/net/ethernet/sun/sunhme.c @@ -3231,7 +3231,7 @@ static int hme_sbus_probe(struct platform_device *op) static int hme_sbus_remove(struct platform_device *op) { - struct happy_meal *hp = dev_get_drvdata(&op->dev); + struct happy_meal *hp = platform_get_drvdata(op); struct net_device *net_dev = hp->dev; unregister_netdev(net_dev);