projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
806636f
)
net: fealnx: remove unnecessary pci_set_drvdata()
author
Jingoo Han
<
[email protected]
>
Mon, 21 Oct 2013 02:12:15 +0000
(11:12 +0900)
committer
David S. Miller
<
[email protected]
>
Mon, 21 Oct 2013 21:21:01 +0000
(17:21 -0400)
The driver core clears the driver data to NULL after device_release
or on probe failure. Thus, it is not needed to manually clear the
device driver data to NULL.
Signed-off-by: Jingoo Han <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/ethernet/fealnx.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/fealnx.c
b/drivers/net/ethernet/fealnx.c
index c706b7a9397ed6f13dedfee142f99ae50a98ff98..4b22a9579f859e7e9d61da22d5175632d6441d2d 100644
(file)
--- a/
drivers/net/ethernet/fealnx.c
+++ b/
drivers/net/ethernet/fealnx.c
@@
-699,7
+699,6
@@
static void fealnx_remove_one(struct pci_dev *pdev)
pci_iounmap(pdev, np->mem);
free_netdev(dev);
pci_release_regions(pdev);
- pci_set_drvdata(pdev, NULL);
} else
printk(KERN_ERR "fealnx: remove for unknown device\n");
}