@@ -469,8 +469,9 @@ static int acenic_probe_one(struct pci_dev *pdev,
ap->pdev = pdev;
ap->name = pci_name(pdev);
- dev->features |= NETIF_F_SG | NETIF_F_IP_CSUM;
- dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
+ netdev_feature_set_bits(NETIF_F_SG | NETIF_F_IP_CSUM, &dev->features);
+ netdev_feature_set_bits(NETIF_F_HW_VLAN_CTAG_TX |
+ NETIF_F_HW_VLAN_CTAG_RX, &dev->features);
dev->watchdog_timeo = 5*HZ;
dev->min_mtu = 0;
@@ -590,7 +591,7 @@ static int acenic_probe_one(struct pci_dev *pdev,
ap->name = dev->name;
if (ap->pci_using_dac)
- dev->features |= NETIF_F_HIGHDMA;
+ netdev_feature_set_bit(NETIF_F_HIGHDMA_BIT, &dev->features);
pci_set_drvdata(pdev, dev);
Use netdev_feature_xxx helpers to replace the logical operation for netdev features. Signed-off-by: Jian Shen <shenjian15@huawei.com> --- drivers/net/ethernet/alteon/acenic.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-)