aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/pdc_adma.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ata/pdc_adma.c')
-rw-r--r--drivers/ata/pdc_adma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/pdc_adma.c b/drivers/ata/pdc_adma.c
index 39588178d028..6c65b0776a2c 100644
--- a/drivers/ata/pdc_adma.c
+++ b/drivers/ata/pdc_adma.c
@@ -607,13 +607,13 @@ static int adma_set_dma_masks(struct pci_dev *pdev, void __iomem *mmio_base)
607{ 607{
608 int rc; 608 int rc;
609 609
610 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); 610 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
611 if (rc) { 611 if (rc) {
612 dev_printk(KERN_ERR, &pdev->dev, 612 dev_printk(KERN_ERR, &pdev->dev,
613 "32-bit DMA enable failed\n"); 613 "32-bit DMA enable failed\n");
614 return rc; 614 return rc;
615 } 615 }
616 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); 616 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
617 if (rc) { 617 if (rc) {
618 dev_printk(KERN_ERR, &pdev->dev, 618 dev_printk(KERN_ERR, &pdev->dev,
619 "32-bit consistent DMA enable failed\n"); 619 "32-bit consistent DMA enable failed\n");