diff options
Diffstat (limited to 'drivers/net/ioc3-eth.c')
-rw-r--r-- | drivers/net/ioc3-eth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ioc3-eth.c b/drivers/net/ioc3-eth.c index 170b12d1d70e..43be0b01f12c 100644 --- a/drivers/net/ioc3-eth.c +++ b/drivers/net/ioc3-eth.c | |||
@@ -1226,10 +1226,10 @@ static int __devinit ioc3_probe(struct pci_dev *pdev, | |||
1226 | int err, pci_using_dac; | 1226 | int err, pci_using_dac; |
1227 | 1227 | ||
1228 | /* Configure DMA attributes. */ | 1228 | /* Configure DMA attributes. */ |
1229 | err = pci_set_dma_mask(pdev, DMA_64BIT_MASK); | 1229 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); |
1230 | if (!err) { | 1230 | if (!err) { |
1231 | pci_using_dac = 1; | 1231 | pci_using_dac = 1; |
1232 | err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); | 1232 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
1233 | if (err < 0) { | 1233 | if (err < 0) { |
1234 | printk(KERN_ERR "%s: Unable to obtain 64 bit DMA " | 1234 | printk(KERN_ERR "%s: Unable to obtain 64 bit DMA " |
1235 | "for consistent allocations\n", pci_name(pdev)); | 1235 | "for consistent allocations\n", pci_name(pdev)); |