Skip to content

Commit

Permalink
xtsonic: add missing platform_set_drvdata() in xtsonic_probe()
Browse files Browse the repository at this point in the history
Add missing platform_set_drvdata() in xtsonic_probe(), otherwise
calling platform_get_drvdata() in xtsonic_device_remove() may
returns NULL.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Wei Yongjun authored and David S. Miller committed Nov 11, 2013
1 parent 06a2feb commit 8724be0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/net/ethernet/natsemi/xtsonic.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ int xtsonic_probe(struct platform_device *pdev)

lp = netdev_priv(dev);
lp->device = &pdev->dev;
platform_set_drvdata(pdev, dev);
SET_NETDEV_DEV(dev, &pdev->dev);
netdev_boot_setup_check(dev);

Expand Down

0 comments on commit 8724be0

Please sign in to comment.