diff options
author | Vasanthy Kolluri <vkolluri@cisco.com> | 2010-03-18 17:19:54 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-19 05:22:48 +0100 |
commit | 73c1ea9b54eb4794b7413ceb2250ad7957dfcc91 (patch) | |
tree | 6493e26658430fd3d796f5b9f44aec883bd45b85 /drivers/net/enic | |
parent | enic: Bug Fix: Fix timeout for hardware Tx and Rx queue disable operations (diff) | |
download | linux-73c1ea9b54eb4794b7413ceb2250ad7957dfcc91.tar.xz linux-73c1ea9b54eb4794b7413ceb2250ad7957dfcc91.zip |
enic: Do not advertise NETIF_F_HW_VLAN_RX
Hardware does not honor vlan filters from the host and so the driver does
not need to advertise this.
Signed-off-by: Scott Feldman <scofeldm@cisco.com>
Signed-off-by: Vasanthy Kolluri <vkolluri@cisco.com>
Signed-off-by: Roopa Prabhu <roprabhu@cisco.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/enic')
-rw-r--r-- | drivers/net/enic/enic_main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/enic/enic_main.c b/drivers/net/enic/enic_main.c index cf098bb636b8..18c043a3f461 100644 --- a/drivers/net/enic/enic_main.c +++ b/drivers/net/enic/enic_main.c @@ -2058,8 +2058,7 @@ static int __devinit enic_probe(struct pci_dev *pdev, netdev->watchdog_timeo = 2 * HZ; netdev->ethtool_ops = &enic_ethtool_ops; - netdev->features |= NETIF_F_HW_VLAN_TX | - NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER; + netdev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX; if (ENIC_SETTING(enic, TXCSUM)) netdev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; if (ENIC_SETTING(enic, TSO)) |