diff options
Diffstat (limited to 'drivers/net/ethernet/neterion')
-rw-r--r-- | drivers/net/ethernet/neterion/s2io.c | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/neterion/vxge/vxge-main.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/neterion/s2io.c b/drivers/net/ethernet/neterion/s2io.c index 3371ff41bb34..ec82d59b03ed 100644 --- a/drivers/net/ethernet/neterion/s2io.c +++ b/drivers/net/ethernet/neterion/s2io.c | |||
@@ -7920,7 +7920,7 @@ s2io_init_nic(struct pci_dev *pdev, const struct pci_device_id *pre) | |||
7920 | NETIF_F_TSO | NETIF_F_TSO6 | | 7920 | NETIF_F_TSO | NETIF_F_TSO6 | |
7921 | NETIF_F_RXCSUM | NETIF_F_LRO; | 7921 | NETIF_F_RXCSUM | NETIF_F_LRO; |
7922 | dev->features |= dev->hw_features | | 7922 | dev->features |= dev->hw_features | |
7923 | NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX; | 7923 | NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX; |
7924 | if (sp->device_type & XFRAME_II_DEVICE) { | 7924 | if (sp->device_type & XFRAME_II_DEVICE) { |
7925 | dev->hw_features |= NETIF_F_UFO; | 7925 | dev->hw_features |= NETIF_F_UFO; |
7926 | if (ufo) | 7926 | if (ufo) |
diff --git a/drivers/net/ethernet/neterion/vxge/vxge-main.c b/drivers/net/ethernet/neterion/vxge/vxge-main.c index 794444e09492..e9e58aadf87e 100644 --- a/drivers/net/ethernet/neterion/vxge/vxge-main.c +++ b/drivers/net/ethernet/neterion/vxge/vxge-main.c | |||
@@ -3415,12 +3415,12 @@ static int vxge_device_register(struct __vxge_hw_device *hldev, | |||
3415 | ndev->hw_features = NETIF_F_RXCSUM | NETIF_F_SG | | 3415 | ndev->hw_features = NETIF_F_RXCSUM | NETIF_F_SG | |
3416 | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | | 3416 | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | |
3417 | NETIF_F_TSO | NETIF_F_TSO6 | | 3417 | NETIF_F_TSO | NETIF_F_TSO6 | |
3418 | NETIF_F_HW_VLAN_TX; | 3418 | NETIF_F_HW_VLAN_CTAG_TX; |
3419 | if (vdev->config.rth_steering != NO_STEERING) | 3419 | if (vdev->config.rth_steering != NO_STEERING) |
3420 | ndev->hw_features |= NETIF_F_RXHASH; | 3420 | ndev->hw_features |= NETIF_F_RXHASH; |
3421 | 3421 | ||
3422 | ndev->features |= ndev->hw_features | | 3422 | ndev->features |= ndev->hw_features | |
3423 | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER; | 3423 | NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_FILTER; |
3424 | 3424 | ||
3425 | 3425 | ||
3426 | ndev->netdev_ops = &vxge_netdev_ops; | 3426 | ndev->netdev_ops = &vxge_netdev_ops; |