]> Pileus Git - ~andy/linux/commitdiff
macmace: add missing platform_set_drvdata() in mace_probe()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Mon, 11 Nov 2013 06:16:16 +0000 (14:16 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 11 Nov 2013 19:02:08 +0000 (14:02 -0500)
Add missing platform_set_drvdata() in mace_probe(), otherwise
calling platform_get_drvdata() in mac_mace_device_remove() may
returns NULL.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/apple/macmace.c

index 4ce8ceb6220584c1e1af51217f91cfa97f4e5783..58a200df4c35ad4745125260db3d38a5ccb381b1 100644 (file)
@@ -211,6 +211,7 @@ static int mace_probe(struct platform_device *pdev)
        mp = netdev_priv(dev);
 
        mp->device = &pdev->dev;
+       platform_set_drvdata(pdev, dev);
        SET_NETDEV_DEV(dev, &pdev->dev);
 
        dev->base_addr = (u32)MACE_BASE;