aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ethernet')
-rw-r--r--drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
index a5735263b1de..6d24aa57ce3c 100644
--- a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
+++ b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
@@ -3873,11 +3873,11 @@ static int ixgbevf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
3873 NETIF_F_HW_VLAN_CTAG_RX | 3873 NETIF_F_HW_VLAN_CTAG_RX |
3874 NETIF_F_HW_VLAN_CTAG_FILTER; 3874 NETIF_F_HW_VLAN_CTAG_FILTER;
3875 3875
3876 netdev->vlan_features |= NETIF_F_TSO; 3876 netdev->vlan_features |= NETIF_F_TSO |
3877 netdev->vlan_features |= NETIF_F_TSO6; 3877 NETIF_F_TSO6 |
3878 netdev->vlan_features |= NETIF_F_IP_CSUM; 3878 NETIF_F_IP_CSUM |
3879 netdev->vlan_features |= NETIF_F_IPV6_CSUM; 3879 NETIF_F_IPV6_CSUM |
3880 netdev->vlan_features |= NETIF_F_SG; 3880 NETIF_F_SG;
3881 3881
3882 if (pci_using_dac) 3882 if (pci_using_dac)
3883 netdev->features |= NETIF_F_HIGHDMA; 3883 netdev->features |= NETIF_F_HIGHDMA;