diff options
Diffstat (limited to 'drivers/net/ethernet/via')
-rw-r--r-- | drivers/net/ethernet/via/via-rhine.c | 5 | ||||
-rw-r--r-- | drivers/net/ethernet/via/via-velocity.c | 7 |
2 files changed, 7 insertions, 5 deletions
diff --git a/drivers/net/ethernet/via/via-rhine.c b/drivers/net/ethernet/via/via-rhine.c index 185c721c52d7..37b02c3768be 100644 --- a/drivers/net/ethernet/via/via-rhine.c +++ b/drivers/net/ethernet/via/via-rhine.c | |||
@@ -1026,8 +1026,9 @@ static int rhine_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1026 | dev->features |= NETIF_F_SG|NETIF_F_HW_CSUM; | 1026 | dev->features |= NETIF_F_SG|NETIF_F_HW_CSUM; |
1027 | 1027 | ||
1028 | if (pdev->revision >= VT6105M) | 1028 | if (pdev->revision >= VT6105M) |
1029 | dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX | | 1029 | dev->features |= NETIF_F_HW_VLAN_CTAG_TX | |
1030 | NETIF_F_HW_VLAN_FILTER; | 1030 | NETIF_F_HW_VLAN_CTAG_RX | |
1031 | NETIF_F_HW_VLAN_CTAG_FILTER; | ||
1031 | 1032 | ||
1032 | /* dev->name not defined before register_netdev()! */ | 1033 | /* dev->name not defined before register_netdev()! */ |
1033 | rc = register_netdev(dev); | 1034 | rc = register_netdev(dev); |
diff --git a/drivers/net/ethernet/via/via-velocity.c b/drivers/net/ethernet/via/via-velocity.c index 1bc7f9fd2583..c1c55a7da941 100644 --- a/drivers/net/ethernet/via/via-velocity.c +++ b/drivers/net/ethernet/via/via-velocity.c | |||
@@ -2810,9 +2810,10 @@ static int velocity_found1(struct pci_dev *pdev, | |||
2810 | dev->ethtool_ops = &velocity_ethtool_ops; | 2810 | dev->ethtool_ops = &velocity_ethtool_ops; |
2811 | netif_napi_add(dev, &vptr->napi, velocity_poll, VELOCITY_NAPI_WEIGHT); | 2811 | netif_napi_add(dev, &vptr->napi, velocity_poll, VELOCITY_NAPI_WEIGHT); |
2812 | 2812 | ||
2813 | dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_HW_VLAN_TX; | 2813 | dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG | |
2814 | dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_FILTER | | 2814 | NETIF_F_HW_VLAN_CTAG_TX; |
2815 | NETIF_F_HW_VLAN_RX | NETIF_F_IP_CSUM; | 2815 | dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_FILTER | |
2816 | NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_IP_CSUM; | ||
2816 | 2817 | ||
2817 | ret = register_netdev(dev); | 2818 | ret = register_netdev(dev); |
2818 | if (ret < 0) | 2819 | if (ret < 0) |