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 0ac51758bc6c..4a0826b8f6f2 100644 --- a/drivers/net/ixgb/ixgb_main.c +++ b/drivers/net/ixgb/ixgb_main.c | |||
@@ -369,8 +369,8 @@ ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
369 | !(err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)))) { | 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_BIT_MASK(32))) || |
373 | (err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK))) { | 373 | (err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)))) { |
374 | printk(KERN_ERR | 374 | printk(KERN_ERR |
375 | "ixgb: No usable DMA configuration, aborting\n"); | 375 | "ixgb: No usable DMA configuration, aborting\n"); |
376 | goto err_dma_mask; | 376 | goto err_dma_mask; |