ethernet/arc/arc_emac: add missing platform_set_drvdata() in arc_emac_probe()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Mon, 11 Nov 2013 06:15:12 +0000 (14:15 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 11 Nov 2013 19:02:07 +0000 (14:02 -0500)
Add missing platform_set_drvdata() in arc_emac_probe(), otherwise
calling platform_get_drvdata() in arc_emac_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/arc/emac_main.c

index d818ded..473c377 100644 (file)
@@ -671,6 +671,7 @@ static int arc_emac_probe(struct platform_device *pdev)
        if (!ndev)
                return -ENOMEM;
 
+       platform_set_drvdata(pdev, ndev);
        SET_NETDEV_DEV(ndev, &pdev->dev);
 
        ndev->netdev_ops = &arc_emac_netdev_ops;