mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
ethernet/arc/arc_emac: add missing platform_set_drvdata() in arc_emac_probe()
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>
This commit is contained in:
parent
f8c31c8f80
commit
45f1b02728
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user