diff options
Diffstat (limited to 'drivers/net/ixgb/ixgb_main.c')
-rw-r--r-- | drivers/net/ixgb/ixgb_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ixgb/ixgb_main.c b/drivers/net/ixgb/ixgb_main.c index 4b0ea66d7a44..0ac51758bc6c 100644 --- a/drivers/net/ixgb/ixgb_main.c +++ b/drivers/net/ixgb/ixgb_main.c | |||
@@ -365,8 +365,8 @@ ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
365 | if (err) | 365 | if (err) |
366 | return err; | 366 | return err; |
367 | 367 | ||
368 | if (!(err = pci_set_dma_mask(pdev, DMA_64BIT_MASK)) && | 368 | if (!(err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) && |
369 | !(err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK))) { | 369 | !(err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)))) { |
370 | pci_using_dac = 1; | 370 | pci_using_dac = 1; |
371 | } else { | 371 | } else { |
372 | if ((err = pci_set_dma_mask(pdev, DMA_32BIT_MASK)) || | 372 | if ((err = pci_set_dma_mask(pdev, DMA_32BIT_MASK)) || |