netdev->hw_features |= NETIF_F_RXHASH;
 
        netdev->features |= netdev->hw_features |
-               NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_FILTER;
+               NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_FILTER |
+               NETIF_F_HIGHDMA;
 
        netdev->vlan_features |= NETIF_F_SG | NETIF_F_TSO | NETIF_F_TSO6 |
                NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
        SET_NETDEV_DEV(netdev, &pdev->dev);
 
        status = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
-       if (!status) {
-               netdev->features |= NETIF_F_HIGHDMA;
-       } else {
-               status = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
-               if (status) {
-                       dev_err(&pdev->dev, "Could not set PCI DMA Mask\n");
-                       goto free_netdev;
-               }
+       if (status) {
+               dev_err(&pdev->dev, "Could not set PCI DMA Mask\n");
+               goto free_netdev;
        }
 
        status = pci_enable_pcie_error_reporting(pdev);