Commit 9f9b6693 authored by Marcel van Nies's avatar Marcel van Nies Committed by David S. Miller

[SUNLANCE]: Fix module unload.

Signed-off-by: default avatarMarcel van Nies <morcles@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d0dc1129
......@@ -1550,7 +1550,7 @@ static int __exit sunlance_sun4_remove(void)
struct lance_private *lp = dev_get_drvdata(&sun4_sdev.ofdev.dev);
struct net_device *net_dev = lp->dev;
unregister_netdevice(net_dev);
unregister_netdev(net_dev);
lance_free_hwresources(lp);
......@@ -1590,7 +1590,7 @@ static int __devexit sunlance_sbus_remove(struct of_device *dev)
struct lance_private *lp = dev_get_drvdata(&dev->dev);
struct net_device *net_dev = lp->dev;
unregister_netdevice(net_dev);
unregister_netdev(net_dev);
lance_free_hwresources(lp);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment