diff options
author | David S. Miller <davem@davemloft.net> | 2014-03-29 18:48:54 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-03-29 18:48:54 -0400 |
commit | 64c27237a07129758e33f5f824ba5c33b7f57417 (patch) | |
tree | 4c0c0a9b6d282d600f2226e1b3510096b9d789dd /drivers/net/ethernet/qlogic/qlge | |
parent | 77a9939426f7a3f35f460afc9b11f1fe45955409 (diff) | |
parent | 49d8137a4039c63c834827f4bfe875e27bb9c521 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts:
drivers/net/ethernet/marvell/mvneta.c
The mvneta.c conflict is a case of overlapping changes,
a conversion to devm_ioremap_resource() vs. a conversion
to netdev_alloc_pcpu_stats.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/qlogic/qlge')
-rw-r--r-- | drivers/net/ethernet/qlogic/qlge/qlge_main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/ethernet/qlogic/qlge/qlge_main.c b/drivers/net/ethernet/qlogic/qlge/qlge_main.c index 5b63405f9d3c..0a1d76acab81 100644 --- a/drivers/net/ethernet/qlogic/qlge/qlge_main.c +++ b/drivers/net/ethernet/qlogic/qlge/qlge_main.c | |||
@@ -4756,7 +4756,9 @@ static int qlge_probe(struct pci_dev *pdev, | |||
4756 | ndev->features = ndev->hw_features; | 4756 | ndev->features = ndev->hw_features; |
4757 | ndev->vlan_features = ndev->hw_features; | 4757 | ndev->vlan_features = ndev->hw_features; |
4758 | /* vlan gets same features (except vlan filter) */ | 4758 | /* vlan gets same features (except vlan filter) */ |
4759 | ndev->vlan_features &= ~NETIF_F_HW_VLAN_CTAG_FILTER; | 4759 | ndev->vlan_features &= ~(NETIF_F_HW_VLAN_CTAG_FILTER | |
4760 | NETIF_F_HW_VLAN_CTAG_TX | | ||
4761 | NETIF_F_HW_VLAN_CTAG_RX); | ||
4760 | 4762 | ||
4761 | if (test_bit(QL_DMA64, &qdev->flags)) | 4763 | if (test_bit(QL_DMA64, &qdev->flags)) |
4762 | ndev->features |= NETIF_F_HIGHDMA; | 4764 | ndev->features |= NETIF_F_HIGHDMA; |