diff options
Diffstat (limited to 'drivers/net/cassini.c')
-rw-r--r-- | drivers/net/cassini.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/cassini.c b/drivers/net/cassini.c index 0effefa1b882..f5222764061c 100644 --- a/drivers/net/cassini.c +++ b/drivers/net/cassini.c | |||
@@ -5074,10 +5074,10 @@ static int __devinit cas_init_one(struct pci_dev *pdev, | |||
5074 | 5074 | ||
5075 | 5075 | ||
5076 | /* Configure DMA attributes. */ | 5076 | /* Configure DMA attributes. */ |
5077 | if (!pci_set_dma_mask(pdev, DMA_64BIT_MASK)) { | 5077 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
5078 | pci_using_dac = 1; | 5078 | pci_using_dac = 1; |
5079 | err = pci_set_consistent_dma_mask(pdev, | 5079 | err = pci_set_consistent_dma_mask(pdev, |
5080 | DMA_64BIT_MASK); | 5080 | DMA_BIT_MASK(64)); |
5081 | if (err < 0) { | 5081 | if (err < 0) { |
5082 | dev_err(&pdev->dev, "Unable to obtain 64-bit DMA " | 5082 | dev_err(&pdev->dev, "Unable to obtain 64-bit DMA " |
5083 | "for consistent allocations\n"); | 5083 | "for consistent allocations\n"); |
@@ -5085,7 +5085,7 @@ static int __devinit cas_init_one(struct pci_dev *pdev, | |||
5085 | } | 5085 | } |
5086 | 5086 | ||
5087 | } else { | 5087 | } else { |
5088 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 5088 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
5089 | if (err) { | 5089 | if (err) { |
5090 | dev_err(&pdev->dev, "No usable DMA configuration, " | 5090 | dev_err(&pdev->dev, "No usable DMA configuration, " |
5091 | "aborting.\n"); | 5091 | "aborting.\n"); |