diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2009-10-14 20:38:58 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-14 20:38:58 -0700 |
commit | 8f7e524ce33ca81b663711404709396165da3cbd (patch) | |
tree | 30ed4b5268b015a662e7c2cd0a0286d061d235dc /drivers/net/Kconfig | |
parent | 47dd7a540b8a0cdc028914b7351fca0cf0a1d305 (diff) | |
download | linux-3.10-8f7e524ce33ca81b663711404709396165da3cbd.tar.gz linux-3.10-8f7e524ce33ca81b663711404709396165da3cbd.tar.bz2 linux-3.10-8f7e524ce33ca81b663711404709396165da3cbd.zip |
vmxnet: fix 2 build problems
vmxnet3 uses in_dev* interfaces so it should depend on INET.
Also fix so that the driver builds when CONFIG_PCI_MSI is disabled.
vmxnet3_drv.c:(.text+0x2a88cb): undefined reference to `in_dev_finish_destroy'
drivers/net/vmxnet3/vmxnet3_drv.c:1335: error: 'struct vmxnet3_intr' has no member named 'msix_entries'
drivers/net/vmxnet3/vmxnet3_drv.c:1384: error: 'struct vmxnet3_intr' has no member named 'msix_entries'
drivers/net/vmxnet3/vmxnet3_drv.c:2137: error: 'struct vmxnet3_intr' has no member named 'msix_entries'
drivers/net/vmxnet3/vmxnet3_drv.c:2138: error: 'struct vmxnet3_intr' has no member named 'msix_entries'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Bhavesh davda <bhavesh@vmware.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/Kconfig')
-rw-r--r-- | drivers/net/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index ce2eba17386..e19ca4bb751 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -3235,7 +3235,7 @@ config VIRTIO_NET config VMXNET3 tristate "VMware VMXNET3 ethernet driver" - depends on PCI && X86 + depends on PCI && X86 && INET help This driver supports VMware's vmxnet3 virtual ethernet NIC. To compile this driver as a module, choose M here: the |