diff options
author | Shreyas Bhatewara <sbhatewara@vmware.com> | 2009-11-16 13:41:33 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-17 04:08:50 -0800 |
commit | 115924b6bdc7cc6bf7da5b933b09281e1f4e17a9 (patch) | |
tree | 8d883a13b6dc2b29caa77a6e178e921e4843db1c /drivers/net/Kconfig | |
parent | 649300b9278dc9fc9c7dfaaa3719ead70882e726 (diff) |
net: Getting rid of the x86 dependency to built vmxnet3
This patch removes config dependency on x86 to build vmxnet3 driver. Thus
the driver can be built on big endian architectures now. Although vmxnet3
is not supported on VMs other than x86 architecture, all this code goes in
to ensure correctness. If the code is not dependent on x86, it should not
assume little endian architecture in any of its operations.
Signed-off-by: Shreyas Bhatewara <sbhatewara@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 e012c2e0825..6399abbdad6 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 && INET + depends on PCI && INET help This driver supports VMware's vmxnet3 virtual ethernet NIC. To compile this driver as a module, choose M here: the |