diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-16 12:40:11 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-16 12:40:11 -0800 |
commit | abcea859783f63c9140ebd9fcb69580d0832f2c8 (patch) | |
tree | b769dd06a0fcf8e86849f31fd1f62358eb7209d0 /drivers | |
parent | 4b48d9d44ebe0e8c31b4fe3b7480941576fff613 (diff) | |
parent | 009777846165fcc49352c0f1487e3a96102884c3 (diff) | |
download | linux-3.10-abcea859783f63c9140ebd9fcb69580d0832f2c8.tar.gz linux-3.10-abcea859783f63c9140ebd9fcb69580d0832f2c8.tar.bz2 linux-3.10-abcea859783f63c9140ebd9fcb69580d0832f2c8.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6:
netxen: include ipv6.h (fixes build failure)
netxen: avoid invalid iounmap
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/netxen/netxen_nic_main.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/net/netxen/netxen_nic_main.c b/drivers/net/netxen/netxen_nic_main.c index 86867405a36..d854f07ef4d 100644 --- a/drivers/net/netxen/netxen_nic_main.c +++ b/drivers/net/netxen/netxen_nic_main.c @@ -41,6 +41,7 @@ #include <linux/dma-mapping.h> #include <linux/if_vlan.h> #include <net/ip.h> +#include <linux/ipv6.h> MODULE_DESCRIPTION("NetXen Multi port (1/10) Gigabit Network Driver"); MODULE_LICENSE("GPL"); @@ -1004,8 +1005,10 @@ static void __devexit netxen_nic_remove(struct pci_dev *pdev) iounmap(adapter->ahw.db_base); iounmap(adapter->ahw.pci_base0); - iounmap(adapter->ahw.pci_base1); - iounmap(adapter->ahw.pci_base2); + if (adapter->ahw.pci_base1 != NULL) + iounmap(adapter->ahw.pci_base1); + if (adapter->ahw.pci_base2 != NULL) + iounmap(adapter->ahw.pci_base2); pci_release_regions(pdev); pci_disable_device(pdev); |