dect
/
linux-2.6
Archived
13
0
Fork 0

gianfar: Fix build.

Reported by Michael Guntsche <mike@it-loops.com>

--------------------
Commit
38bddf04bc gianfar: gfar_remove needs to call unregister_netdev()

breaks the build of the gianfar driver because "dev" is undefined in
this function. To quickly test rc9 I changed this to priv->ndev but I do
not know if this is the correct one.
--------------------

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2009-09-06 01:41:02 -07:00
parent 16ebb5e0b3
commit d9d8e0418f
1 changed files with 1 additions and 1 deletions

View File

@ -491,7 +491,7 @@ static int gfar_remove(struct of_device *ofdev)
dev_set_drvdata(&ofdev->dev, NULL);
unregister_netdev(dev);
unregister_netdev(priv->ndev);
iounmap(priv->regs);
free_netdev(priv->ndev);