diff options
Diffstat (limited to 'drivers/net/sky2.c')
-rw-r--r-- | drivers/net/sky2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c index d01c56eb9627..a2ff9cb1e7ac 100644 --- a/drivers/net/sky2.c +++ b/drivers/net/sky2.c | |||
@@ -4374,16 +4374,16 @@ static int __devinit sky2_probe(struct pci_dev *pdev, | |||
4374 | pci_set_master(pdev); | 4374 | pci_set_master(pdev); |
4375 | 4375 | ||
4376 | if (sizeof(dma_addr_t) > sizeof(u32) && | 4376 | if (sizeof(dma_addr_t) > sizeof(u32) && |
4377 | !(err = pci_set_dma_mask(pdev, DMA_64BIT_MASK))) { | 4377 | !(err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)))) { |
4378 | using_dac = 1; | 4378 | using_dac = 1; |
4379 | err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); | 4379 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
4380 | if (err < 0) { | 4380 | if (err < 0) { |
4381 | dev_err(&pdev->dev, "unable to obtain 64 bit DMA " | 4381 | dev_err(&pdev->dev, "unable to obtain 64 bit DMA " |
4382 | "for consistent allocations\n"); | 4382 | "for consistent allocations\n"); |
4383 | goto err_out_free_regions; | 4383 | goto err_out_free_regions; |
4384 | } | 4384 | } |
4385 | } else { | 4385 | } else { |
4386 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 4386 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
4387 | if (err) { | 4387 | if (err) { |
4388 | dev_err(&pdev->dev, "no usable DMA configuration\n"); | 4388 | dev_err(&pdev->dev, "no usable DMA configuration\n"); |
4389 | goto err_out_free_regions; | 4389 | goto err_out_free_regions; |