diff options
author | Yang Hongyang <yanghy@cn.fujitsu.com> | 2009-04-06 22:01:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 11:31:11 -0400 |
commit | 284901a90a9e0b812ca3f5f852cbbfb60d10249d (patch) | |
tree | 06c1b5a0f83c90cfb662f756e7781977ce739ce8 /drivers | |
parent | 6afd142fd0dfba497246d0fab236c20a7b4bf778 (diff) |
dma-mapping: replace all DMA_32BIT_MASK macro with DMA_BIT_MASK(32)
Replace all DMA_32BIT_MASK macro with DMA_BIT_MASK(32)
Signed-off-by: Yang Hongyang<yanghy@cn.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
139 files changed, 232 insertions, 236 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 207d775c3c27..f75dac57dc2b 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -2408,7 +2408,7 @@ static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac) | |||
2408 | !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 2408 | !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
2409 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); | 2409 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
2410 | if (rc) { | 2410 | if (rc) { |
2411 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 2411 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
2412 | if (rc) { | 2412 | if (rc) { |
2413 | dev_printk(KERN_ERR, &pdev->dev, | 2413 | dev_printk(KERN_ERR, &pdev->dev, |
2414 | "64-bit DMA enable failed\n"); | 2414 | "64-bit DMA enable failed\n"); |
@@ -2416,13 +2416,13 @@ static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac) | |||
2416 | } | 2416 | } |
2417 | } | 2417 | } |
2418 | } else { | 2418 | } else { |
2419 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 2419 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
2420 | if (rc) { | 2420 | if (rc) { |
2421 | dev_printk(KERN_ERR, &pdev->dev, | 2421 | dev_printk(KERN_ERR, &pdev->dev, |
2422 | "32-bit DMA enable failed\n"); | 2422 | "32-bit DMA enable failed\n"); |
2423 | return rc; | 2423 | return rc; |
2424 | } | 2424 | } |
2425 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 2425 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
2426 | if (rc) { | 2426 | if (rc) { |
2427 | dev_printk(KERN_ERR, &pdev->dev, | 2427 | dev_printk(KERN_ERR, &pdev->dev, |
2428 | "32-bit consistent DMA enable failed\n"); | 2428 | "32-bit consistent DMA enable failed\n"); |
diff --git a/drivers/ata/pata_cs5520.c b/drivers/ata/pata_cs5520.c index db6a96984f3f..0df83cf74233 100644 --- a/drivers/ata/pata_cs5520.c +++ b/drivers/ata/pata_cs5520.c | |||
@@ -203,11 +203,11 @@ static int __devinit cs5520_init_one(struct pci_dev *pdev, const struct pci_devi | |||
203 | return -ENODEV; | 203 | return -ENODEV; |
204 | } | 204 | } |
205 | 205 | ||
206 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 206 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
207 | printk(KERN_ERR DRV_NAME ": unable to configure DMA mask.\n"); | 207 | printk(KERN_ERR DRV_NAME ": unable to configure DMA mask.\n"); |
208 | return -ENODEV; | 208 | return -ENODEV; |
209 | } | 209 | } |
210 | if (pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK)) { | 210 | if (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32))) { |
211 | printk(KERN_ERR DRV_NAME ": unable to configure consistent DMA mask.\n"); | 211 | printk(KERN_ERR DRV_NAME ": unable to configure consistent DMA mask.\n"); |
212 | return -ENODEV; | 212 | return -ENODEV; |
213 | } | 213 | } |
diff --git a/drivers/ata/pata_ixp4xx_cf.c b/drivers/ata/pata_ixp4xx_cf.c index 19fdecf319a6..ba54b089f98c 100644 --- a/drivers/ata/pata_ixp4xx_cf.c +++ b/drivers/ata/pata_ixp4xx_cf.c | |||
@@ -157,7 +157,7 @@ static __devinit int ixp4xx_pata_probe(struct platform_device *pdev) | |||
157 | return -ENOMEM; | 157 | return -ENOMEM; |
158 | 158 | ||
159 | /* acquire resources and fill host */ | 159 | /* acquire resources and fill host */ |
160 | pdev->dev.coherent_dma_mask = DMA_32BIT_MASK; | 160 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); |
161 | 161 | ||
162 | data->cs0 = devm_ioremap(&pdev->dev, cs0->start, 0x1000); | 162 | data->cs0 = devm_ioremap(&pdev->dev, cs0->start, 0x1000); |
163 | data->cs1 = devm_ioremap(&pdev->dev, cs1->start, 0x1000); | 163 | data->cs1 = devm_ioremap(&pdev->dev, cs1->start, 0x1000); |
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"); |
diff --git a/drivers/ata/sata_inic162x.c b/drivers/ata/sata_inic162x.c index 305a4f825f53..8d890cc5a7ee 100644 --- a/drivers/ata/sata_inic162x.c +++ b/drivers/ata/sata_inic162x.c | |||
@@ -861,14 +861,14 @@ static int inic_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
861 | } | 861 | } |
862 | 862 | ||
863 | /* Set dma_mask. This devices doesn't support 64bit addressing. */ | 863 | /* Set dma_mask. This devices doesn't support 64bit addressing. */ |
864 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 864 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
865 | if (rc) { | 865 | if (rc) { |
866 | dev_printk(KERN_ERR, &pdev->dev, | 866 | dev_printk(KERN_ERR, &pdev->dev, |
867 | "32-bit DMA enable failed\n"); | 867 | "32-bit DMA enable failed\n"); |
868 | return rc; | 868 | return rc; |
869 | } | 869 | } |
870 | 870 | ||
871 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 871 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
872 | if (rc) { | 872 | if (rc) { |
873 | dev_printk(KERN_ERR, &pdev->dev, | 873 | dev_printk(KERN_ERR, &pdev->dev, |
874 | "32-bit consistent DMA enable failed\n"); | 874 | "32-bit consistent DMA enable failed\n"); |
diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c index 45e0fe191afc..5af3ea19d3c5 100644 --- a/drivers/ata/sata_mv.c +++ b/drivers/ata/sata_mv.c | |||
@@ -3916,7 +3916,7 @@ static int pci_go_64(struct pci_dev *pdev) | |||
3916 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 3916 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
3917 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); | 3917 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
3918 | if (rc) { | 3918 | if (rc) { |
3919 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 3919 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
3920 | if (rc) { | 3920 | if (rc) { |
3921 | dev_printk(KERN_ERR, &pdev->dev, | 3921 | dev_printk(KERN_ERR, &pdev->dev, |
3922 | "64-bit DMA enable failed\n"); | 3922 | "64-bit DMA enable failed\n"); |
@@ -3924,13 +3924,13 @@ static int pci_go_64(struct pci_dev *pdev) | |||
3924 | } | 3924 | } |
3925 | } | 3925 | } |
3926 | } else { | 3926 | } else { |
3927 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 3927 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
3928 | if (rc) { | 3928 | if (rc) { |
3929 | dev_printk(KERN_ERR, &pdev->dev, | 3929 | dev_printk(KERN_ERR, &pdev->dev, |
3930 | "32-bit DMA enable failed\n"); | 3930 | "32-bit DMA enable failed\n"); |
3931 | return rc; | 3931 | return rc; |
3932 | } | 3932 | } |
3933 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 3933 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
3934 | if (rc) { | 3934 | if (rc) { |
3935 | dev_printk(KERN_ERR, &pdev->dev, | 3935 | dev_printk(KERN_ERR, &pdev->dev, |
3936 | "32-bit consistent DMA enable failed\n"); | 3936 | "32-bit consistent DMA enable failed\n"); |
diff --git a/drivers/ata/sata_qstor.c b/drivers/ata/sata_qstor.c index 7b37c27d7972..326c0cfc29b3 100644 --- a/drivers/ata/sata_qstor.c +++ b/drivers/ata/sata_qstor.c | |||
@@ -587,7 +587,7 @@ static int qs_set_dma_masks(struct pci_dev *pdev, void __iomem *mmio_base) | |||
587 | !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 587 | !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
588 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); | 588 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
589 | if (rc) { | 589 | if (rc) { |
590 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 590 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
591 | if (rc) { | 591 | if (rc) { |
592 | dev_printk(KERN_ERR, &pdev->dev, | 592 | dev_printk(KERN_ERR, &pdev->dev, |
593 | "64-bit DMA enable failed\n"); | 593 | "64-bit DMA enable failed\n"); |
@@ -595,13 +595,13 @@ static int qs_set_dma_masks(struct pci_dev *pdev, void __iomem *mmio_base) | |||
595 | } | 595 | } |
596 | } | 596 | } |
597 | } else { | 597 | } else { |
598 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 598 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
599 | if (rc) { | 599 | if (rc) { |
600 | dev_printk(KERN_ERR, &pdev->dev, | 600 | dev_printk(KERN_ERR, &pdev->dev, |
601 | "32-bit DMA enable failed\n"); | 601 | "32-bit DMA enable failed\n"); |
602 | return rc; | 602 | return rc; |
603 | } | 603 | } |
604 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 604 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
605 | if (rc) { | 605 | if (rc) { |
606 | dev_printk(KERN_ERR, &pdev->dev, | 606 | dev_printk(KERN_ERR, &pdev->dev, |
607 | "32-bit consistent DMA enable failed\n"); | 607 | "32-bit consistent DMA enable failed\n"); |
diff --git a/drivers/ata/sata_sil24.c b/drivers/ata/sata_sil24.c index 37730bc2f09f..77aa8d7ecec4 100644 --- a/drivers/ata/sata_sil24.c +++ b/drivers/ata/sata_sil24.c | |||
@@ -1300,7 +1300,7 @@ static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1300 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 1300 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
1301 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); | 1301 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
1302 | if (rc) { | 1302 | if (rc) { |
1303 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 1303 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
1304 | if (rc) { | 1304 | if (rc) { |
1305 | dev_printk(KERN_ERR, &pdev->dev, | 1305 | dev_printk(KERN_ERR, &pdev->dev, |
1306 | "64-bit DMA enable failed\n"); | 1306 | "64-bit DMA enable failed\n"); |
@@ -1308,13 +1308,13 @@ static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1308 | } | 1308 | } |
1309 | } | 1309 | } |
1310 | } else { | 1310 | } else { |
1311 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1311 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1312 | if (rc) { | 1312 | if (rc) { |
1313 | dev_printk(KERN_ERR, &pdev->dev, | 1313 | dev_printk(KERN_ERR, &pdev->dev, |
1314 | "32-bit DMA enable failed\n"); | 1314 | "32-bit DMA enable failed\n"); |
1315 | return rc; | 1315 | return rc; |
1316 | } | 1316 | } |
1317 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 1317 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
1318 | if (rc) { | 1318 | if (rc) { |
1319 | dev_printk(KERN_ERR, &pdev->dev, | 1319 | dev_printk(KERN_ERR, &pdev->dev, |
1320 | "32-bit consistent DMA enable failed\n"); | 1320 | "32-bit consistent DMA enable failed\n"); |
diff --git a/drivers/ata/sata_vsc.c b/drivers/ata/sata_vsc.c index ed70bd28fa2c..8b2a278b2547 100644 --- a/drivers/ata/sata_vsc.c +++ b/drivers/ata/sata_vsc.c | |||
@@ -399,10 +399,10 @@ static int __devinit vsc_sata_init_one(struct pci_dev *pdev, | |||
399 | /* | 399 | /* |
400 | * Use 32 bit DMA mask, because 64 bit address support is poor. | 400 | * Use 32 bit DMA mask, because 64 bit address support is poor. |
401 | */ | 401 | */ |
402 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 402 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
403 | if (rc) | 403 | if (rc) |
404 | return rc; | 404 | return rc; |
405 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 405 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
406 | if (rc) | 406 | if (rc) |
407 | return rc; | 407 | return rc; |
408 | 408 | ||
diff --git a/drivers/atm/he.c b/drivers/atm/he.c index bdbad7edf682..2de64065aa1b 100644 --- a/drivers/atm/he.c +++ b/drivers/atm/he.c | |||
@@ -358,7 +358,7 @@ he_init_one(struct pci_dev *pci_dev, const struct pci_device_id *pci_ent) | |||
358 | 358 | ||
359 | if (pci_enable_device(pci_dev)) | 359 | if (pci_enable_device(pci_dev)) |
360 | return -EIO; | 360 | return -EIO; |
361 | if (pci_set_dma_mask(pci_dev, DMA_32BIT_MASK) != 0) { | 361 | if (pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32)) != 0) { |
362 | printk(KERN_WARNING "he: no suitable dma available\n"); | 362 | printk(KERN_WARNING "he: no suitable dma available\n"); |
363 | err = -EIO; | 363 | err = -EIO; |
364 | goto init_one_failure; | 364 | goto init_one_failure; |
diff --git a/drivers/atm/lanai.c b/drivers/atm/lanai.c index 8733a2ea04c2..cf97c34cbaf1 100644 --- a/drivers/atm/lanai.c +++ b/drivers/atm/lanai.c | |||
@@ -1957,12 +1957,12 @@ static int __devinit lanai_pci_start(struct lanai_dev *lanai) | |||
1957 | return -ENXIO; | 1957 | return -ENXIO; |
1958 | } | 1958 | } |
1959 | pci_set_master(pci); | 1959 | pci_set_master(pci); |
1960 | if (pci_set_dma_mask(pci, DMA_32BIT_MASK) != 0) { | 1960 | if (pci_set_dma_mask(pci, DMA_BIT_MASK(32)) != 0) { |
1961 | printk(KERN_WARNING DEV_LABEL | 1961 | printk(KERN_WARNING DEV_LABEL |
1962 | "(itf %d): No suitable DMA available.\n", lanai->number); | 1962 | "(itf %d): No suitable DMA available.\n", lanai->number); |
1963 | return -EBUSY; | 1963 | return -EBUSY; |
1964 | } | 1964 | } |
1965 | if (pci_set_consistent_dma_mask(pci, DMA_32BIT_MASK) != 0) { | 1965 | if (pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32)) != 0) { |
1966 | printk(KERN_WARNING DEV_LABEL | 1966 | printk(KERN_WARNING DEV_LABEL |
1967 | "(itf %d): No suitable DMA available.\n", lanai->number); | 1967 | "(itf %d): No suitable DMA available.\n", lanai->number); |
1968 | return -EBUSY; | 1968 | return -EBUSY; |
diff --git a/drivers/block/DAC960.c b/drivers/block/DAC960.c index 5496865b297e..f22ed6cc69f2 100644 --- a/drivers/block/DAC960.c +++ b/drivers/block/DAC960.c | |||
@@ -1169,9 +1169,9 @@ static bool DAC960_V1_EnableMemoryMailboxInterface(DAC960_Controller_T | |||
1169 | int i; | 1169 | int i; |
1170 | 1170 | ||
1171 | 1171 | ||
1172 | if (pci_set_dma_mask(Controller->PCIDevice, DMA_32BIT_MASK)) | 1172 | if (pci_set_dma_mask(Controller->PCIDevice, DMA_BIT_MASK(32))) |
1173 | return DAC960_Failure(Controller, "DMA mask out of range"); | 1173 | return DAC960_Failure(Controller, "DMA mask out of range"); |
1174 | Controller->BounceBufferLimit = DMA_32BIT_MASK; | 1174 | Controller->BounceBufferLimit = DMA_BIT_MASK(32); |
1175 | 1175 | ||
1176 | if ((hw_type == DAC960_PD_Controller) || (hw_type == DAC960_P_Controller)) { | 1176 | if ((hw_type == DAC960_PD_Controller) || (hw_type == DAC960_P_Controller)) { |
1177 | CommandMailboxesSize = 0; | 1177 | CommandMailboxesSize = 0; |
@@ -1374,8 +1374,8 @@ static bool DAC960_V2_EnableMemoryMailboxInterface(DAC960_Controller_T | |||
1374 | 1374 | ||
1375 | if (!pci_set_dma_mask(Controller->PCIDevice, DMA_BIT_MASK(64))) | 1375 | if (!pci_set_dma_mask(Controller->PCIDevice, DMA_BIT_MASK(64))) |
1376 | Controller->BounceBufferLimit = DMA_BIT_MASK(64); | 1376 | Controller->BounceBufferLimit = DMA_BIT_MASK(64); |
1377 | else if (!pci_set_dma_mask(Controller->PCIDevice, DMA_32BIT_MASK)) | 1377 | else if (!pci_set_dma_mask(Controller->PCIDevice, DMA_BIT_MASK(32))) |
1378 | Controller->BounceBufferLimit = DMA_32BIT_MASK; | 1378 | Controller->BounceBufferLimit = DMA_BIT_MASK(32); |
1379 | else | 1379 | else |
1380 | return DAC960_Failure(Controller, "DMA mask out of range"); | 1380 | return DAC960_Failure(Controller, "DMA mask out of range"); |
1381 | 1381 | ||
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 149a611e8fe5..a6c55432819b 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -3639,7 +3639,7 @@ static int __devinit cciss_init_one(struct pci_dev *pdev, | |||
3639 | /* configure PCI DMA stuff */ | 3639 | /* configure PCI DMA stuff */ |
3640 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) | 3640 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) |
3641 | dac = 1; | 3641 | dac = 1; |
3642 | else if (!pci_set_dma_mask(pdev, DMA_32BIT_MASK)) | 3642 | else if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) |
3643 | dac = 0; | 3643 | dac = 0; |
3644 | else { | 3644 | else { |
3645 | printk(KERN_ERR "cciss: no suitable DMA available\n"); | 3645 | printk(KERN_ERR "cciss: no suitable DMA available\n"); |
diff --git a/drivers/block/sx8.c b/drivers/block/sx8.c index db5783ace1e4..ff0448e4bf03 100644 --- a/drivers/block/sx8.c +++ b/drivers/block/sx8.c | |||
@@ -1597,7 +1597,7 @@ static int carm_init_one (struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1597 | pci_dac = 1; | 1597 | pci_dac = 1; |
1598 | } else { | 1598 | } else { |
1599 | #endif | 1599 | #endif |
1600 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1600 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1601 | if (rc) { | 1601 | if (rc) { |
1602 | printk(KERN_ERR DRV_NAME "(%s): DMA mask failure\n", | 1602 | printk(KERN_ERR DRV_NAME "(%s): DMA mask failure\n", |
1603 | pci_name(pdev)); | 1603 | pci_name(pdev)); |
diff --git a/drivers/block/umem.c b/drivers/block/umem.c index e93e99c9103c..9744d59a69f2 100644 --- a/drivers/block/umem.c +++ b/drivers/block/umem.c | |||
@@ -830,7 +830,7 @@ static int __devinit mm_pci_probe(struct pci_dev *dev, | |||
830 | "Micro Memory(tm) controller found (PCI Mem Module (Battery Backup))\n"); | 830 | "Micro Memory(tm) controller found (PCI Mem Module (Battery Backup))\n"); |
831 | 831 | ||
832 | if (pci_set_dma_mask(dev, DMA_BIT_MASK(64)) && | 832 | if (pci_set_dma_mask(dev, DMA_BIT_MASK(64)) && |
833 | pci_set_dma_mask(dev, DMA_32BIT_MASK)) { | 833 | pci_set_dma_mask(dev, DMA_BIT_MASK(32))) { |
834 | dev_printk(KERN_WARNING, &dev->dev, "NO suitable DMA found\n"); | 834 | dev_printk(KERN_WARNING, &dev->dev, "NO suitable DMA found\n"); |
835 | return -ENOMEM; | 835 | return -ENOMEM; |
836 | } | 836 | } |
diff --git a/drivers/crypto/hifn_795x.c b/drivers/crypto/hifn_795x.c index 4d85402a9e4a..2bef086fb342 100644 --- a/drivers/crypto/hifn_795x.c +++ b/drivers/crypto/hifn_795x.c | |||
@@ -2575,7 +2575,7 @@ static int hifn_probe(struct pci_dev *pdev, const struct pci_device_id *id) | |||
2575 | return err; | 2575 | return err; |
2576 | pci_set_master(pdev); | 2576 | pci_set_master(pdev); |
2577 | 2577 | ||
2578 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 2578 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
2579 | if (err) | 2579 | if (err) |
2580 | goto err_out_disable_pci_device; | 2580 | goto err_out_disable_pci_device; |
2581 | 2581 | ||
diff --git a/drivers/crypto/ixp4xx_crypto.c b/drivers/crypto/ixp4xx_crypto.c index af9761ccf9f1..f9f05d7a707d 100644 --- a/drivers/crypto/ixp4xx_crypto.c +++ b/drivers/crypto/ixp4xx_crypto.c | |||
@@ -209,7 +209,7 @@ static struct platform_device pseudo_dev = { | |||
209 | .id = 0, | 209 | .id = 0, |
210 | .num_resources = 0, | 210 | .num_resources = 0, |
211 | .dev = { | 211 | .dev = { |
212 | .coherent_dma_mask = DMA_32BIT_MASK, | 212 | .coherent_dma_mask = DMA_BIT_MASK(32), |
213 | .release = dev_release, | 213 | .release = dev_release, |
214 | } | 214 | } |
215 | }; | 215 | }; |
diff --git a/drivers/dma/ioat.c b/drivers/dma/ioat.c index 22e9f1911111..2225bb6ba3d1 100644 --- a/drivers/dma/ioat.c +++ b/drivers/dma/ioat.c | |||
@@ -100,13 +100,13 @@ static int __devinit ioat_probe(struct pci_dev *pdev, | |||
100 | 100 | ||
101 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); | 101 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); |
102 | if (err) | 102 | if (err) |
103 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 103 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
104 | if (err) | 104 | if (err) |
105 | goto err_set_dma_mask; | 105 | goto err_set_dma_mask; |
106 | 106 | ||
107 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); | 107 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
108 | if (err) | 108 | if (err) |
109 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 109 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
110 | if (err) | 110 | if (err) |
111 | goto err_set_dma_mask; | 111 | goto err_set_dma_mask; |
112 | 112 | ||
diff --git a/drivers/firmware/dcdbas.c b/drivers/firmware/dcdbas.c index 3009e0171e54..18d65fb42ee7 100644 --- a/drivers/firmware/dcdbas.c +++ b/drivers/firmware/dcdbas.c | |||
@@ -545,7 +545,7 @@ static int __devinit dcdbas_probe(struct platform_device *dev) | |||
545 | * BIOS SMI calls require buffer addresses be in 32-bit address space. | 545 | * BIOS SMI calls require buffer addresses be in 32-bit address space. |
546 | * This is done by setting the DMA mask below. | 546 | * This is done by setting the DMA mask below. |
547 | */ | 547 | */ |
548 | dcdbas_pdev->dev.coherent_dma_mask = DMA_32BIT_MASK; | 548 | dcdbas_pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); |
549 | dcdbas_pdev->dev.dma_mask = &dcdbas_pdev->dev.coherent_dma_mask; | 549 | dcdbas_pdev->dev.dma_mask = &dcdbas_pdev->dev.coherent_dma_mask; |
550 | 550 | ||
551 | error = sysfs_create_group(&dev->dev.kobj, &dcdbas_attr_group); | 551 | error = sysfs_create_group(&dev->dev.kobj, &dcdbas_attr_group); |
diff --git a/drivers/ide/cs5520.c b/drivers/ide/cs5520.c index 58fb90e5b763..87987a7d36c9 100644 --- a/drivers/ide/cs5520.c +++ b/drivers/ide/cs5520.c | |||
@@ -122,7 +122,7 @@ static int __devinit cs5520_init_one(struct pci_dev *dev, const struct pci_devic | |||
122 | return -ENODEV; | 122 | return -ENODEV; |
123 | } | 123 | } |
124 | pci_set_master(dev); | 124 | pci_set_master(dev); |
125 | if (pci_set_dma_mask(dev, DMA_32BIT_MASK)) { | 125 | if (pci_set_dma_mask(dev, DMA_BIT_MASK(32))) { |
126 | printk(KERN_WARNING "%s: No suitable DMA available.\n", | 126 | printk(KERN_WARNING "%s: No suitable DMA available.\n", |
127 | d->name); | 127 | d->name); |
128 | return -ENODEV; | 128 | return -ENODEV; |
diff --git a/drivers/ide/setup-pci.c b/drivers/ide/setup-pci.c index a19dbccd7617..7a3a12d6e638 100644 --- a/drivers/ide/setup-pci.c +++ b/drivers/ide/setup-pci.c | |||
@@ -208,7 +208,7 @@ static int ide_pci_enable(struct pci_dev *dev, const struct ide_port_info *d) | |||
208 | * a DMA mask field to the struct ide_port_info if we need it | 208 | * a DMA mask field to the struct ide_port_info if we need it |
209 | * (or let lower level driver set the DMA mask) | 209 | * (or let lower level driver set the DMA mask) |
210 | */ | 210 | */ |
211 | ret = pci_set_dma_mask(dev, DMA_32BIT_MASK); | 211 | ret = pci_set_dma_mask(dev, DMA_BIT_MASK(32)); |
212 | if (ret < 0) { | 212 | if (ret < 0) { |
213 | printk(KERN_ERR "%s %s: can't set DMA mask\n", | 213 | printk(KERN_ERR "%s %s: can't set DMA mask\n", |
214 | d->name, pci_name(dev)); | 214 | d->name, pci_name(dev)); |
diff --git a/drivers/ieee1394/pcilynx.c b/drivers/ieee1394/pcilynx.c index 38f712036201..9555fd253865 100644 --- a/drivers/ieee1394/pcilynx.c +++ b/drivers/ieee1394/pcilynx.c | |||
@@ -1171,7 +1171,7 @@ static int __devinit add_card(struct pci_dev *dev, | |||
1171 | 1171 | ||
1172 | error = -ENXIO; | 1172 | error = -ENXIO; |
1173 | 1173 | ||
1174 | if (pci_set_dma_mask(dev, DMA_32BIT_MASK)) | 1174 | if (pci_set_dma_mask(dev, DMA_BIT_MASK(32))) |
1175 | FAIL("DMA address limits not supported for PCILynx hardware"); | 1175 | FAIL("DMA address limits not supported for PCILynx hardware"); |
1176 | if (pci_enable_device(dev)) | 1176 | if (pci_enable_device(dev)) |
1177 | FAIL("failed to enable PCILynx hardware"); | 1177 | FAIL("failed to enable PCILynx hardware"); |
diff --git a/drivers/infiniband/hw/amso1100/c2.c b/drivers/infiniband/hw/amso1100/c2.c index 54d2e0760abf..0cfbb6d2f762 100644 --- a/drivers/infiniband/hw/amso1100/c2.c +++ b/drivers/infiniband/hw/amso1100/c2.c | |||
@@ -995,7 +995,7 @@ static int __devinit c2_probe(struct pci_dev *pcidev, | |||
995 | goto bail2; | 995 | goto bail2; |
996 | } | 996 | } |
997 | } else { | 997 | } else { |
998 | ret = pci_set_dma_mask(pcidev, DMA_32BIT_MASK); | 998 | ret = pci_set_dma_mask(pcidev, DMA_BIT_MASK(32)); |
999 | if (ret < 0) { | 999 | if (ret < 0) { |
1000 | printk(KERN_ERR PFX "32b DMA configuration failed\n"); | 1000 | printk(KERN_ERR PFX "32b DMA configuration failed\n"); |
1001 | goto bail2; | 1001 | goto bail2; |
diff --git a/drivers/infiniband/hw/ipath/ipath_driver.c b/drivers/infiniband/hw/ipath/ipath_driver.c index 77b2fb5b7c35..04e88b600558 100644 --- a/drivers/infiniband/hw/ipath/ipath_driver.c +++ b/drivers/infiniband/hw/ipath/ipath_driver.c | |||
@@ -477,7 +477,7 @@ static int __devinit ipath_init_one(struct pci_dev *pdev, | |||
477 | * do not setup 64 bit maps on systems with 2GB or less | 477 | * do not setup 64 bit maps on systems with 2GB or less |
478 | * memory installed. | 478 | * memory installed. |
479 | */ | 479 | */ |
480 | ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 480 | ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
481 | if (ret) { | 481 | if (ret) { |
482 | dev_info(&pdev->dev, | 482 | dev_info(&pdev->dev, |
483 | "Unable to set DMA mask for unit %u: %d\n", | 483 | "Unable to set DMA mask for unit %u: %d\n", |
@@ -486,7 +486,7 @@ static int __devinit ipath_init_one(struct pci_dev *pdev, | |||
486 | } | 486 | } |
487 | else { | 487 | else { |
488 | ipath_dbg("No 64bit DMA mask, used 32 bit mask\n"); | 488 | ipath_dbg("No 64bit DMA mask, used 32 bit mask\n"); |
489 | ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 489 | ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
490 | if (ret) | 490 | if (ret) |
491 | dev_info(&pdev->dev, | 491 | dev_info(&pdev->dev, |
492 | "Unable to set DMA consistent mask " | 492 | "Unable to set DMA consistent mask " |
diff --git a/drivers/infiniband/hw/mthca/mthca_main.c b/drivers/infiniband/hw/mthca/mthca_main.c index 5d234204f7b7..1d83cf7caf38 100644 --- a/drivers/infiniband/hw/mthca/mthca_main.c +++ b/drivers/infiniband/hw/mthca/mthca_main.c | |||
@@ -1019,7 +1019,7 @@ static int __mthca_init_one(struct pci_dev *pdev, int hca_type) | |||
1019 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); | 1019 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); |
1020 | if (err) { | 1020 | if (err) { |
1021 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n"); | 1021 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n"); |
1022 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1022 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1023 | if (err) { | 1023 | if (err) { |
1024 | dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting.\n"); | 1024 | dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting.\n"); |
1025 | goto err_free_res; | 1025 | goto err_free_res; |
@@ -1029,7 +1029,7 @@ static int __mthca_init_one(struct pci_dev *pdev, int hca_type) | |||
1029 | if (err) { | 1029 | if (err) { |
1030 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit " | 1030 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit " |
1031 | "consistent PCI DMA mask.\n"); | 1031 | "consistent PCI DMA mask.\n"); |
1032 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 1032 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
1033 | if (err) { | 1033 | if (err) { |
1034 | dev_err(&pdev->dev, "Can't set consistent PCI DMA mask, " | 1034 | dev_err(&pdev->dev, "Can't set consistent PCI DMA mask, " |
1035 | "aborting.\n"); | 1035 | "aborting.\n"); |
diff --git a/drivers/infiniband/hw/nes/nes.c b/drivers/infiniband/hw/nes/nes.c index 7446810446e1..cbde0cfe27e0 100644 --- a/drivers/infiniband/hw/nes/nes.c +++ b/drivers/infiniband/hw/nes/nes.c | |||
@@ -489,12 +489,12 @@ static int __devinit nes_probe(struct pci_dev *pcidev, const struct pci_device_i | |||
489 | goto bail2; | 489 | goto bail2; |
490 | } | 490 | } |
491 | } else { | 491 | } else { |
492 | ret = pci_set_dma_mask(pcidev, DMA_32BIT_MASK); | 492 | ret = pci_set_dma_mask(pcidev, DMA_BIT_MASK(32)); |
493 | if (ret < 0) { | 493 | if (ret < 0) { |
494 | printk(KERN_ERR PFX "32b DMA mask configuration failed\n"); | 494 | printk(KERN_ERR PFX "32b DMA mask configuration failed\n"); |
495 | goto bail2; | 495 | goto bail2; |
496 | } | 496 | } |
497 | ret = pci_set_consistent_dma_mask(pcidev, DMA_32BIT_MASK); | 497 | ret = pci_set_consistent_dma_mask(pcidev, DMA_BIT_MASK(32)); |
498 | if (ret) { | 498 | if (ret) { |
499 | printk(KERN_ERR PFX "32b DMA consistent mask configuration failed\n"); | 499 | printk(KERN_ERR PFX "32b DMA consistent mask configuration failed\n"); |
500 | goto bail2; | 500 | goto bail2; |
diff --git a/drivers/media/dvb/dm1105/dm1105.c b/drivers/media/dvb/dm1105/dm1105.c index 5b20cf5a29f0..971a8b18f6dd 100644 --- a/drivers/media/dvb/dm1105/dm1105.c +++ b/drivers/media/dvb/dm1105/dm1105.c | |||
@@ -662,7 +662,7 @@ static int __devinit dm1105_probe(struct pci_dev *pdev, | |||
662 | if (ret < 0) | 662 | if (ret < 0) |
663 | goto err_kfree; | 663 | goto err_kfree; |
664 | 664 | ||
665 | ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 665 | ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
666 | if (ret < 0) | 666 | if (ret < 0) |
667 | goto err_pci_disable_device; | 667 | goto err_pci_disable_device; |
668 | 668 | ||
diff --git a/drivers/media/dvb/pluto2/pluto2.c b/drivers/media/dvb/pluto2/pluto2.c index ee89623be85a..598eaf8acc6e 100644 --- a/drivers/media/dvb/pluto2/pluto2.c +++ b/drivers/media/dvb/pluto2/pluto2.c | |||
@@ -616,7 +616,7 @@ static int __devinit pluto2_probe(struct pci_dev *pdev, | |||
616 | /* enable interrupts */ | 616 | /* enable interrupts */ |
617 | pci_write_config_dword(pdev, 0x6c, 0x8000); | 617 | pci_write_config_dword(pdev, 0x6c, 0x8000); |
618 | 618 | ||
619 | ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 619 | ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
620 | if (ret < 0) | 620 | if (ret < 0) |
621 | goto err_pci_disable_device; | 621 | goto err_pci_disable_device; |
622 | 622 | ||
diff --git a/drivers/media/video/bt8xx/bttv-driver.c b/drivers/media/video/bt8xx/bttv-driver.c index 74f619d6cc93..23b7499b3185 100644 --- a/drivers/media/video/bt8xx/bttv-driver.c +++ b/drivers/media/video/bt8xx/bttv-driver.c | |||
@@ -4317,7 +4317,7 @@ static int __devinit bttv_probe(struct pci_dev *dev, | |||
4317 | btv->c.nr); | 4317 | btv->c.nr); |
4318 | return -EIO; | 4318 | return -EIO; |
4319 | } | 4319 | } |
4320 | if (pci_set_dma_mask(dev, DMA_32BIT_MASK)) { | 4320 | if (pci_set_dma_mask(dev, DMA_BIT_MASK(32))) { |
4321 | printk(KERN_WARNING "bttv%d: No suitable DMA available.\n", | 4321 | printk(KERN_WARNING "bttv%d: No suitable DMA available.\n", |
4322 | btv->c.nr); | 4322 | btv->c.nr); |
4323 | return -EIO; | 4323 | return -EIO; |
diff --git a/drivers/media/video/cx88/cx88-alsa.c b/drivers/media/video/cx88/cx88-alsa.c index ce98d955231a..0ccdf36626e3 100644 --- a/drivers/media/video/cx88/cx88-alsa.c +++ b/drivers/media/video/cx88/cx88-alsa.c | |||
@@ -745,7 +745,7 @@ static int __devinit snd_cx88_create(struct snd_card *card, | |||
745 | return err; | 745 | return err; |
746 | } | 746 | } |
747 | 747 | ||
748 | if (!pci_dma_supported(pci,DMA_32BIT_MASK)) { | 748 | if (!pci_dma_supported(pci,DMA_BIT_MASK(32))) { |
749 | dprintk(0, "%s/1: Oops: no 32bit PCI DMA ???\n",core->name); | 749 | dprintk(0, "%s/1: Oops: no 32bit PCI DMA ???\n",core->name); |
750 | err = -EIO; | 750 | err = -EIO; |
751 | cx88_core_put(core,pci); | 751 | cx88_core_put(core,pci); |
diff --git a/drivers/media/video/cx88/cx88-mpeg.c b/drivers/media/video/cx88/cx88-mpeg.c index b295b76737e3..da4e3912cd37 100644 --- a/drivers/media/video/cx88/cx88-mpeg.c +++ b/drivers/media/video/cx88/cx88-mpeg.c | |||
@@ -455,7 +455,7 @@ static int cx8802_init_common(struct cx8802_dev *dev) | |||
455 | if (pci_enable_device(dev->pci)) | 455 | if (pci_enable_device(dev->pci)) |
456 | return -EIO; | 456 | return -EIO; |
457 | pci_set_master(dev->pci); | 457 | pci_set_master(dev->pci); |
458 | if (!pci_dma_supported(dev->pci,DMA_32BIT_MASK)) { | 458 | if (!pci_dma_supported(dev->pci,DMA_BIT_MASK(32))) { |
459 | printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name); | 459 | printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name); |
460 | return -EIO; | 460 | return -EIO; |
461 | } | 461 | } |
diff --git a/drivers/media/video/cx88/cx88-video.c b/drivers/media/video/cx88/cx88-video.c index ec0425d9043a..b993d42fe73c 100644 --- a/drivers/media/video/cx88/cx88-video.c +++ b/drivers/media/video/cx88/cx88-video.c | |||
@@ -1832,7 +1832,7 @@ static int __devinit cx8800_initdev(struct pci_dev *pci_dev, | |||
1832 | dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0)); | 1832 | dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0)); |
1833 | 1833 | ||
1834 | pci_set_master(pci_dev); | 1834 | pci_set_master(pci_dev); |
1835 | if (!pci_dma_supported(pci_dev,DMA_32BIT_MASK)) { | 1835 | if (!pci_dma_supported(pci_dev,DMA_BIT_MASK(32))) { |
1836 | printk("%s/0: Oops: no 32bit PCI DMA ???\n",core->name); | 1836 | printk("%s/0: Oops: no 32bit PCI DMA ???\n",core->name); |
1837 | err = -EIO; | 1837 | err = -EIO; |
1838 | goto fail_core; | 1838 | goto fail_core; |
diff --git a/drivers/media/video/meye.c b/drivers/media/video/meye.c index 2ad11f0999c6..1d66855a379a 100644 --- a/drivers/media/video/meye.c +++ b/drivers/media/video/meye.c | |||
@@ -117,7 +117,7 @@ static int ptable_alloc(void) | |||
117 | memset(meye.mchip_ptable, 0, sizeof(meye.mchip_ptable)); | 117 | memset(meye.mchip_ptable, 0, sizeof(meye.mchip_ptable)); |
118 | 118 | ||
119 | /* give only 32 bit DMA addresses */ | 119 | /* give only 32 bit DMA addresses */ |
120 | if (dma_set_mask(&meye.mchip_dev->dev, DMA_32BIT_MASK)) | 120 | if (dma_set_mask(&meye.mchip_dev->dev, DMA_BIT_MASK(32))) |
121 | return -1; | 121 | return -1; |
122 | 122 | ||
123 | meye.mchip_ptable_toc = dma_alloc_coherent(&meye.mchip_dev->dev, | 123 | meye.mchip_ptable_toc = dma_alloc_coherent(&meye.mchip_dev->dev, |
diff --git a/drivers/media/video/saa7134/saa7134-core.c b/drivers/media/video/saa7134/saa7134-core.c index 0bb09f1723d1..2def6fec814b 100644 --- a/drivers/media/video/saa7134/saa7134-core.c +++ b/drivers/media/video/saa7134/saa7134-core.c | |||
@@ -911,7 +911,7 @@ static int __devinit saa7134_initdev(struct pci_dev *pci_dev, | |||
911 | pci_name(pci_dev), dev->pci_rev, pci_dev->irq, | 911 | pci_name(pci_dev), dev->pci_rev, pci_dev->irq, |
912 | dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0)); | 912 | dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0)); |
913 | pci_set_master(pci_dev); | 913 | pci_set_master(pci_dev); |
914 | if (!pci_dma_supported(pci_dev, DMA_32BIT_MASK)) { | 914 | if (!pci_dma_supported(pci_dev, DMA_BIT_MASK(32))) { |
915 | printk("%s: Oops: no 32bit PCI DMA ???\n",dev->name); | 915 | printk("%s: Oops: no 32bit PCI DMA ???\n",dev->name); |
916 | err = -EIO; | 916 | err = -EIO; |
917 | goto fail1; | 917 | goto fail1; |
diff --git a/drivers/memstick/host/jmb38x_ms.c b/drivers/memstick/host/jmb38x_ms.c index 2fb95a5b72eb..f4a162a4bece 100644 --- a/drivers/memstick/host/jmb38x_ms.c +++ b/drivers/memstick/host/jmb38x_ms.c | |||
@@ -877,7 +877,7 @@ static int jmb38x_ms_probe(struct pci_dev *pdev, | |||
877 | int pci_dev_busy = 0; | 877 | int pci_dev_busy = 0; |
878 | int rc, cnt; | 878 | int rc, cnt; |
879 | 879 | ||
880 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 880 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
881 | if (rc) | 881 | if (rc) |
882 | return rc; | 882 | return rc; |
883 | 883 | ||
diff --git a/drivers/message/fusion/mptbase.c b/drivers/message/fusion/mptbase.c index 98026016a935..d0d126c69354 100644 --- a/drivers/message/fusion/mptbase.c +++ b/drivers/message/fusion/mptbase.c | |||
@@ -1539,8 +1539,8 @@ mpt_mapresources(MPT_ADAPTER *ioc) | |||
1539 | dinitprintk(ioc, printk(MYIOC_s_INFO_FMT | 1539 | dinitprintk(ioc, printk(MYIOC_s_INFO_FMT |
1540 | ": 64 BIT PCI BUS DMA ADDRESSING SUPPORTED\n", | 1540 | ": 64 BIT PCI BUS DMA ADDRESSING SUPPORTED\n", |
1541 | ioc->name)); | 1541 | ioc->name)); |
1542 | } else if (!pci_set_dma_mask(pdev, DMA_32BIT_MASK) | 1542 | } else if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) |
1543 | && !pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK)) { | 1543 | && !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32))) { |
1544 | dinitprintk(ioc, printk(MYIOC_s_INFO_FMT | 1544 | dinitprintk(ioc, printk(MYIOC_s_INFO_FMT |
1545 | ": 32 BIT PCI BUS DMA ADDRESSING SUPPORTED\n", | 1545 | ": 32 BIT PCI BUS DMA ADDRESSING SUPPORTED\n", |
1546 | ioc->name)); | 1546 | ioc->name)); |
diff --git a/drivers/message/i2o/memory.c b/drivers/message/i2o/memory.c index 9a08d8e45516..292b41e49fbd 100644 --- a/drivers/message/i2o/memory.c +++ b/drivers/message/i2o/memory.c | |||
@@ -187,7 +187,7 @@ int i2o_dma_alloc(struct device *dev, struct i2o_dma *addr, size_t len) | |||
187 | mutex_lock(&mem_lock); | 187 | mutex_lock(&mem_lock); |
188 | if ((sizeof(dma_addr_t) > 4) && (pdev->dma_mask == DMA_BIT_MASK(64))) { | 188 | if ((sizeof(dma_addr_t) > 4) && (pdev->dma_mask == DMA_BIT_MASK(64))) { |
189 | dma_64 = 1; | 189 | dma_64 = 1; |
190 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 190 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
191 | mutex_unlock(&mem_lock); | 191 | mutex_unlock(&mem_lock); |
192 | return -ENOMEM; | 192 | return -ENOMEM; |
193 | } | 193 | } |
diff --git a/drivers/message/i2o/pci.c b/drivers/message/i2o/pci.c index ed17ac5af3e0..35ba2ae38b42 100644 --- a/drivers/message/i2o/pci.c +++ b/drivers/message/i2o/pci.c | |||
@@ -334,7 +334,7 @@ static int __devinit i2o_pci_probe(struct pci_dev *pdev, | |||
334 | return rc; | 334 | return rc; |
335 | } | 335 | } |
336 | 336 | ||
337 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 337 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
338 | printk(KERN_WARNING "i2o: no suitable DMA found for %s\n", | 338 | printk(KERN_WARNING "i2o: no suitable DMA found for %s\n", |
339 | pci_name(pdev)); | 339 | pci_name(pdev)); |
340 | rc = -ENODEV; | 340 | rc = -ENODEV; |
diff --git a/drivers/misc/tifm_7xx1.c b/drivers/misc/tifm_7xx1.c index be5672a98702..a6ef18259da0 100644 --- a/drivers/misc/tifm_7xx1.c +++ b/drivers/misc/tifm_7xx1.c | |||
@@ -324,7 +324,7 @@ static int tifm_7xx1_probe(struct pci_dev *dev, | |||
324 | int pci_dev_busy = 0; | 324 | int pci_dev_busy = 0; |
325 | int rc; | 325 | int rc; |
326 | 326 | ||
327 | rc = pci_set_dma_mask(dev, DMA_32BIT_MASK); | 327 | rc = pci_set_dma_mask(dev, DMA_BIT_MASK(32)); |
328 | if (rc) | 328 | if (rc) |
329 | return rc; | 329 | return rc; |
330 | 330 | ||
diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c index 406da9a8d453..c5b316e22371 100644 --- a/drivers/mmc/host/sdhci-pci.c +++ b/drivers/mmc/host/sdhci-pci.c | |||
@@ -380,7 +380,7 @@ static int sdhci_pci_enable_dma(struct sdhci_host *host) | |||
380 | "doesn't fully claim to support it.\n"); | 380 | "doesn't fully claim to support it.\n"); |
381 | } | 381 | } |
382 | 382 | ||
383 | ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 383 | ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
384 | if (ret) | 384 | if (ret) |
385 | return ret; | 385 | return ret; |
386 | 386 | ||
diff --git a/drivers/net/8139cp.c b/drivers/net/8139cp.c index d08475a7f676..02330f3d5a55 100644 --- a/drivers/net/8139cp.c +++ b/drivers/net/8139cp.c | |||
@@ -1530,7 +1530,7 @@ static void cp_get_ethtool_stats (struct net_device *dev, | |||
1530 | 1530 | ||
1531 | /* begin NIC statistics dump */ | 1531 | /* begin NIC statistics dump */ |
1532 | cpw32(StatsAddr + 4, (u64)dma >> 32); | 1532 | cpw32(StatsAddr + 4, (u64)dma >> 32); |
1533 | cpw32(StatsAddr, ((u64)dma & DMA_32BIT_MASK) | DumpStats); | 1533 | cpw32(StatsAddr, ((u64)dma & DMA_BIT_MASK(32)) | DumpStats); |
1534 | cpr32(StatsAddr); | 1534 | cpr32(StatsAddr); |
1535 | 1535 | ||
1536 | for (i = 0; i < 1000; i++) { | 1536 | for (i = 0; i < 1000; i++) { |
@@ -1935,13 +1935,13 @@ static int cp_init_one (struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1935 | } else { | 1935 | } else { |
1936 | pci_using_dac = 0; | 1936 | pci_using_dac = 0; |
1937 | 1937 | ||
1938 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1938 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1939 | if (rc) { | 1939 | if (rc) { |
1940 | dev_err(&pdev->dev, | 1940 | dev_err(&pdev->dev, |
1941 | "No usable DMA configuration, aborting.\n"); | 1941 | "No usable DMA configuration, aborting.\n"); |
1942 | goto err_out_res; | 1942 | goto err_out_res; |
1943 | } | 1943 | } |
1944 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 1944 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
1945 | if (rc) { | 1945 | if (rc) { |
1946 | dev_err(&pdev->dev, | 1946 | dev_err(&pdev->dev, |
1947 | "No usable consistent DMA configuration, " | 1947 | "No usable consistent DMA configuration, " |
diff --git a/drivers/net/acenic.c b/drivers/net/acenic.c index 9509c17b3667..57bc71527850 100644 --- a/drivers/net/acenic.c +++ b/drivers/net/acenic.c | |||
@@ -1163,7 +1163,7 @@ static int __devinit ace_init(struct net_device *dev) | |||
1163 | */ | 1163 | */ |
1164 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 1164 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
1165 | ap->pci_using_dac = 1; | 1165 | ap->pci_using_dac = 1; |
1166 | } else if (!pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 1166 | } else if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
1167 | ap->pci_using_dac = 0; | 1167 | ap->pci_using_dac = 0; |
1168 | } else { | 1168 | } else { |
1169 | ecode = -ENODEV; | 1169 | ecode = -ENODEV; |
diff --git a/drivers/net/amd8111e.c b/drivers/net/amd8111e.c index cb9c95d3ed0a..19831bd64016 100644 --- a/drivers/net/amd8111e.c +++ b/drivers/net/amd8111e.c | |||
@@ -1871,7 +1871,7 @@ static int __devinit amd8111e_probe_one(struct pci_dev *pdev, | |||
1871 | } | 1871 | } |
1872 | 1872 | ||
1873 | /* Initialize DMA */ | 1873 | /* Initialize DMA */ |
1874 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) < 0) { | 1874 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) < 0) { |
1875 | printk(KERN_ERR "amd8111e: DMA not supported," | 1875 | printk(KERN_ERR "amd8111e: DMA not supported," |
1876 | "exiting.\n"); | 1876 | "exiting.\n"); |
1877 | goto err_free_reg; | 1877 | goto err_free_reg; |
diff --git a/drivers/net/atl1e/atl1e_main.c b/drivers/net/atl1e/atl1e_main.c index c758884728a5..fb57b750866b 100644 --- a/drivers/net/atl1e/atl1e_main.c +++ b/drivers/net/atl1e/atl1e_main.c | |||
@@ -2326,8 +2326,8 @@ static int __devinit atl1e_probe(struct pci_dev *pdev, | |||
2326 | * various kernel subsystems to support the mechanics required by a | 2326 | * various kernel subsystems to support the mechanics required by a |
2327 | * fixed-high-32-bit system. | 2327 | * fixed-high-32-bit system. |
2328 | */ | 2328 | */ |
2329 | if ((pci_set_dma_mask(pdev, DMA_32BIT_MASK) != 0) || | 2329 | if ((pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) || |
2330 | (pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK) != 0)) { | 2330 | (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)) { |
2331 | dev_err(&pdev->dev, "No usable DMA configuration,aborting\n"); | 2331 | dev_err(&pdev->dev, "No usable DMA configuration,aborting\n"); |
2332 | goto err_dma; | 2332 | goto err_dma; |
2333 | } | 2333 | } |
diff --git a/drivers/net/atlx/atl1.c b/drivers/net/atlx/atl1.c index 43fc1b2ca3cd..0ab22540bf59 100644 --- a/drivers/net/atlx/atl1.c +++ b/drivers/net/atlx/atl1.c | |||
@@ -2929,7 +2929,7 @@ static int __devinit atl1_probe(struct pci_dev *pdev, | |||
2929 | * various kernel subsystems to support the mechanics required by a | 2929 | * various kernel subsystems to support the mechanics required by a |
2930 | * fixed-high-32-bit system. | 2930 | * fixed-high-32-bit system. |
2931 | */ | 2931 | */ |
2932 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 2932 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
2933 | if (err) { | 2933 | if (err) { |
2934 | dev_err(&pdev->dev, "no usable DMA configuration\n"); | 2934 | dev_err(&pdev->dev, "no usable DMA configuration\n"); |
2935 | goto err_dma; | 2935 | goto err_dma; |
diff --git a/drivers/net/atlx/atl2.c b/drivers/net/atlx/atl2.c index 9fe06c3f4097..c734b1983ec1 100644 --- a/drivers/net/atlx/atl2.c +++ b/drivers/net/atlx/atl2.c | |||
@@ -1358,8 +1358,8 @@ static int __devinit atl2_probe(struct pci_dev *pdev, | |||
1358 | * until the kernel has the proper infrastructure to support 64-bit DMA | 1358 | * until the kernel has the proper infrastructure to support 64-bit DMA |
1359 | * on these devices. | 1359 | * on these devices. |
1360 | */ | 1360 | */ |
1361 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) && | 1361 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) && |
1362 | pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK)) { | 1362 | pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32))) { |
1363 | printk(KERN_ERR "atl2: No usable DMA configuration, aborting\n"); | 1363 | printk(KERN_ERR "atl2: No usable DMA configuration, aborting\n"); |
1364 | goto err_dma; | 1364 | goto err_dma; |
1365 | } | 1365 | } |
diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c index 5fd57703c65a..9d268be0b670 100644 --- a/drivers/net/bnx2.c +++ b/drivers/net/bnx2.c | |||
@@ -7538,7 +7538,7 @@ bnx2_init_board(struct pci_dev *pdev, struct net_device *dev) | |||
7538 | "pci_set_consistent_dma_mask failed, aborting.\n"); | 7538 | "pci_set_consistent_dma_mask failed, aborting.\n"); |
7539 | goto err_out_unmap; | 7539 | goto err_out_unmap; |
7540 | } | 7540 | } |
7541 | } else if ((rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK)) != 0) { | 7541 | } else if ((rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) != 0) { |
7542 | dev_err(&pdev->dev, "System does not support DMA, aborting.\n"); | 7542 | dev_err(&pdev->dev, "System does not support DMA, aborting.\n"); |
7543 | goto err_out_unmap; | 7543 | goto err_out_unmap; |
7544 | } | 7544 | } |
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index 03e01243b45e..ad5ef25add3e 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c | |||
@@ -10988,7 +10988,7 @@ static int __devinit bnx2x_init_dev(struct pci_dev *pdev, | |||
10988 | goto err_out_release; | 10988 | goto err_out_release; |
10989 | } | 10989 | } |
10990 | 10990 | ||
10991 | } else if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) != 0) { | 10991 | } else if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) { |
10992 | printk(KERN_ERR PFX "System does not support DMA," | 10992 | printk(KERN_ERR PFX "System does not support DMA," |
10993 | " aborting\n"); | 10993 | " aborting\n"); |
10994 | rc = -EIO; | 10994 | rc = -EIO; |
diff --git a/drivers/net/cassini.c b/drivers/net/cassini.c index c2895240e467..f5222764061c 100644 --- a/drivers/net/cassini.c +++ b/drivers/net/cassini.c | |||
@@ -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"); |
diff --git a/drivers/net/chelsio/cxgb2.c b/drivers/net/chelsio/cxgb2.c index 57cfbc369f51..fa06994f9737 100644 --- a/drivers/net/chelsio/cxgb2.c +++ b/drivers/net/chelsio/cxgb2.c | |||
@@ -1066,7 +1066,7 @@ static int __devinit init_one(struct pci_dev *pdev, | |||
1066 | goto out_disable_pdev; | 1066 | goto out_disable_pdev; |
1067 | } | 1067 | } |
1068 | 1068 | ||
1069 | } else if ((err = pci_set_dma_mask(pdev, DMA_32BIT_MASK)) != 0) { | 1069 | } else if ((err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) != 0) { |
1070 | CH_ERR("%s: no usable DMA configuration\n", pci_name(pdev)); | 1070 | CH_ERR("%s: no usable DMA configuration\n", pci_name(pdev)); |
1071 | goto out_disable_pdev; | 1071 | goto out_disable_pdev; |
1072 | } | 1072 | } |
diff --git a/drivers/net/cxgb3/cxgb3_main.c b/drivers/net/cxgb3/cxgb3_main.c index ec35d3b82409..ab0e5febef83 100644 --- a/drivers/net/cxgb3/cxgb3_main.c +++ b/drivers/net/cxgb3/cxgb3_main.c | |||
@@ -3046,7 +3046,7 @@ static int __devinit init_one(struct pci_dev *pdev, | |||
3046 | "coherent allocations\n"); | 3046 | "coherent allocations\n"); |
3047 | goto out_disable_device; | 3047 | goto out_disable_device; |
3048 | } | 3048 | } |
3049 | } else if ((err = pci_set_dma_mask(pdev, DMA_32BIT_MASK)) != 0) { | 3049 | } else if ((err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) != 0) { |
3050 | dev_err(&pdev->dev, "no usable DMA configuration\n"); | 3050 | dev_err(&pdev->dev, "no usable DMA configuration\n"); |
3051 | goto out_disable_device; | 3051 | goto out_disable_device; |
3052 | } | 3052 | } |
diff --git a/drivers/net/e100.c b/drivers/net/e100.c index 0504db9ad643..5c0b457c7868 100644 --- a/drivers/net/e100.c +++ b/drivers/net/e100.c | |||
@@ -2604,7 +2604,7 @@ static int __devinit e100_probe(struct pci_dev *pdev, | |||
2604 | goto err_out_disable_pdev; | 2604 | goto err_out_disable_pdev; |
2605 | } | 2605 | } |
2606 | 2606 | ||
2607 | if ((err = pci_set_dma_mask(pdev, DMA_32BIT_MASK))) { | 2607 | if ((err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)))) { |
2608 | DPRINTK(PROBE, ERR, "No usable DMA configuration, aborting.\n"); | 2608 | DPRINTK(PROBE, ERR, "No usable DMA configuration, aborting.\n"); |
2609 | goto err_out_free_res; | 2609 | goto err_out_free_res; |
2610 | } | 2610 | } |
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c index caa71dffb3d0..ddc5c533e89c 100644 --- a/drivers/net/e1000/e1000_main.c +++ b/drivers/net/e1000/e1000_main.c | |||
@@ -966,9 +966,9 @@ static int __devinit e1000_probe(struct pci_dev *pdev, | |||
966 | !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) { | 966 | !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) { |
967 | pci_using_dac = 1; | 967 | pci_using_dac = 1; |
968 | } else { | 968 | } else { |
969 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 969 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
970 | if (err) { | 970 | if (err) { |
971 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 971 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
972 | if (err) { | 972 | if (err) { |
973 | E1000_ERR("No usable DMA configuration, " | 973 | E1000_ERR("No usable DMA configuration, " |
974 | "aborting\n"); | 974 | "aborting\n"); |
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c index 4a61160052a3..409b58cad0e5 100644 --- a/drivers/net/e1000e/netdev.c +++ b/drivers/net/e1000e/netdev.c | |||
@@ -2203,7 +2203,7 @@ static void e1000_configure_tx(struct e1000_adapter *adapter) | |||
2203 | /* Setup the HW Tx Head and Tail descriptor pointers */ | 2203 | /* Setup the HW Tx Head and Tail descriptor pointers */ |
2204 | tdba = tx_ring->dma; | 2204 | tdba = tx_ring->dma; |
2205 | tdlen = tx_ring->count * sizeof(struct e1000_tx_desc); | 2205 | tdlen = tx_ring->count * sizeof(struct e1000_tx_desc); |
2206 | ew32(TDBAL, (tdba & DMA_32BIT_MASK)); | 2206 | ew32(TDBAL, (tdba & DMA_BIT_MASK(32))); |
2207 | ew32(TDBAH, (tdba >> 32)); | 2207 | ew32(TDBAH, (tdba >> 32)); |
2208 | ew32(TDLEN, tdlen); | 2208 | ew32(TDLEN, tdlen); |
2209 | ew32(TDH, 0); | 2209 | ew32(TDH, 0); |
@@ -2459,7 +2459,7 @@ static void e1000_configure_rx(struct e1000_adapter *adapter) | |||
2459 | * the Base and Length of the Rx Descriptor Ring | 2459 | * the Base and Length of the Rx Descriptor Ring |
2460 | */ | 2460 | */ |
2461 | rdba = rx_ring->dma; | 2461 | rdba = rx_ring->dma; |
2462 | ew32(RDBAL, (rdba & DMA_32BIT_MASK)); | 2462 | ew32(RDBAL, (rdba & DMA_BIT_MASK(32))); |
2463 | ew32(RDBAH, (rdba >> 32)); | 2463 | ew32(RDBAH, (rdba >> 32)); |
2464 | ew32(RDLEN, rdlen); | 2464 | ew32(RDLEN, rdlen); |
2465 | ew32(RDH, 0); | 2465 | ew32(RDH, 0); |
@@ -4769,10 +4769,10 @@ static int __devinit e1000_probe(struct pci_dev *pdev, | |||
4769 | if (!err) | 4769 | if (!err) |
4770 | pci_using_dac = 1; | 4770 | pci_using_dac = 1; |
4771 | } else { | 4771 | } else { |
4772 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 4772 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
4773 | if (err) { | 4773 | if (err) { |
4774 | err = pci_set_consistent_dma_mask(pdev, | 4774 | err = pci_set_consistent_dma_mask(pdev, |
4775 | DMA_32BIT_MASK); | 4775 | DMA_BIT_MASK(32)); |
4776 | if (err) { | 4776 | if (err) { |
4777 | dev_err(&pdev->dev, "No usable DMA " | 4777 | dev_err(&pdev->dev, "No usable DMA " |
4778 | "configuration, aborting\n"); | 4778 | "configuration, aborting\n"); |
diff --git a/drivers/net/enic/enic_main.c b/drivers/net/enic/enic_main.c index 5b87105ac9e0..9080f07da8fe 100644 --- a/drivers/net/enic/enic_main.c +++ b/drivers/net/enic/enic_main.c | |||
@@ -1687,13 +1687,13 @@ static int __devinit enic_probe(struct pci_dev *pdev, | |||
1687 | 1687 | ||
1688 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(40)); | 1688 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(40)); |
1689 | if (err) { | 1689 | if (err) { |
1690 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1690 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1691 | if (err) { | 1691 | if (err) { |
1692 | printk(KERN_ERR PFX | 1692 | printk(KERN_ERR PFX |
1693 | "No usable DMA configuration, aborting.\n"); | 1693 | "No usable DMA configuration, aborting.\n"); |
1694 | goto err_out_release_regions; | 1694 | goto err_out_release_regions; |
1695 | } | 1695 | } |
1696 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 1696 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
1697 | if (err) { | 1697 | if (err) { |
1698 | printk(KERN_ERR PFX | 1698 | printk(KERN_ERR PFX |
1699 | "Unable to obtain 32-bit DMA " | 1699 | "Unable to obtain 32-bit DMA " |
diff --git a/drivers/net/hp100.c b/drivers/net/hp100.c index ad8be7e78290..de3f49f991a3 100644 --- a/drivers/net/hp100.c +++ b/drivers/net/hp100.c | |||
@@ -580,7 +580,7 @@ static int __devinit hp100_probe1(struct net_device *dev, int ioaddr, | |||
580 | * Also, we can have EISA Busmaster cards (not tested), | 580 | * Also, we can have EISA Busmaster cards (not tested), |
581 | * so beware !!! - Jean II */ | 581 | * so beware !!! - Jean II */ |
582 | if((bus == HP100_BUS_PCI) && | 582 | if((bus == HP100_BUS_PCI) && |
583 | (pci_set_dma_mask(pci_dev, DMA_32BIT_MASK))) { | 583 | (pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32)))) { |
584 | /* Gracefully fallback to shared memory */ | 584 | /* Gracefully fallback to shared memory */ |
585 | goto busmasterfail; | 585 | goto busmasterfail; |
586 | } | 586 | } |
diff --git a/drivers/net/igb/igb_main.c b/drivers/net/igb/igb_main.c index 82278beaac83..6b0697c565b9 100644 --- a/drivers/net/igb/igb_main.c +++ b/drivers/net/igb/igb_main.c | |||
@@ -1160,9 +1160,9 @@ static int __devinit igb_probe(struct pci_dev *pdev, | |||
1160 | if (!err) | 1160 | if (!err) |
1161 | pci_using_dac = 1; | 1161 | pci_using_dac = 1; |
1162 | } else { | 1162 | } else { |
1163 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1163 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1164 | if (err) { | 1164 | if (err) { |
1165 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 1165 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
1166 | if (err) { | 1166 | if (err) { |
1167 | dev_err(&pdev->dev, "No usable DMA " | 1167 | dev_err(&pdev->dev, "No usable DMA " |
1168 | "configuration, aborting\n"); | 1168 | "configuration, aborting\n"); |
diff --git a/drivers/net/ioc3-eth.c b/drivers/net/ioc3-eth.c index 43be0b01f12c..cbc63ff13add 100644 --- a/drivers/net/ioc3-eth.c +++ b/drivers/net/ioc3-eth.c | |||
@@ -1236,7 +1236,7 @@ static int __devinit ioc3_probe(struct pci_dev *pdev, | |||
1236 | goto out; | 1236 | goto out; |
1237 | } | 1237 | } |
1238 | } else { | 1238 | } else { |
1239 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1239 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1240 | if (err) { | 1240 | if (err) { |
1241 | printk(KERN_ERR "%s: No usable DMA configuration, " | 1241 | printk(KERN_ERR "%s: No usable DMA configuration, " |
1242 | "aborting.\n", pci_name(pdev)); | 1242 | "aborting.\n", pci_name(pdev)); |
diff --git a/drivers/net/ipg.c b/drivers/net/ipg.c index ed9ded939d96..43019461b776 100644 --- a/drivers/net/ipg.c +++ b/drivers/net/ipg.c | |||
@@ -2242,7 +2242,7 @@ static int __devinit ipg_probe(struct pci_dev *pdev, | |||
2242 | 2242 | ||
2243 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(40)); | 2243 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(40)); |
2244 | if (rc < 0) { | 2244 | if (rc < 0) { |
2245 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 2245 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
2246 | if (rc < 0) { | 2246 | if (rc < 0) { |
2247 | printk(KERN_ERR "%s: DMA config failed.\n", | 2247 | printk(KERN_ERR "%s: DMA config failed.\n", |
2248 | pci_name(pdev)); | 2248 | pci_name(pdev)); |
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; |
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index 126735ca6d7f..9ef128ae6458 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c | |||
@@ -1643,7 +1643,7 @@ static void ixgbe_configure_tx(struct ixgbe_adapter *adapter) | |||
1643 | tdba = ring->dma; | 1643 | tdba = ring->dma; |
1644 | tdlen = ring->count * sizeof(union ixgbe_adv_tx_desc); | 1644 | tdlen = ring->count * sizeof(union ixgbe_adv_tx_desc); |
1645 | IXGBE_WRITE_REG(hw, IXGBE_TDBAL(j), | 1645 | IXGBE_WRITE_REG(hw, IXGBE_TDBAL(j), |
1646 | (tdba & DMA_32BIT_MASK)); | 1646 | (tdba & DMA_BIT_MASK(32))); |
1647 | IXGBE_WRITE_REG(hw, IXGBE_TDBAH(j), (tdba >> 32)); | 1647 | IXGBE_WRITE_REG(hw, IXGBE_TDBAH(j), (tdba >> 32)); |
1648 | IXGBE_WRITE_REG(hw, IXGBE_TDLEN(j), tdlen); | 1648 | IXGBE_WRITE_REG(hw, IXGBE_TDLEN(j), tdlen); |
1649 | IXGBE_WRITE_REG(hw, IXGBE_TDH(j), 0); | 1649 | IXGBE_WRITE_REG(hw, IXGBE_TDH(j), 0); |
@@ -1782,7 +1782,7 @@ static void ixgbe_configure_rx(struct ixgbe_adapter *adapter) | |||
1782 | for (i = 0; i < adapter->num_rx_queues; i++) { | 1782 | for (i = 0; i < adapter->num_rx_queues; i++) { |
1783 | rdba = adapter->rx_ring[i].dma; | 1783 | rdba = adapter->rx_ring[i].dma; |
1784 | j = adapter->rx_ring[i].reg_idx; | 1784 | j = adapter->rx_ring[i].reg_idx; |
1785 | IXGBE_WRITE_REG(hw, IXGBE_RDBAL(j), (rdba & DMA_32BIT_MASK)); | 1785 | IXGBE_WRITE_REG(hw, IXGBE_RDBAL(j), (rdba & DMA_BIT_MASK(32))); |
1786 | IXGBE_WRITE_REG(hw, IXGBE_RDBAH(j), (rdba >> 32)); | 1786 | IXGBE_WRITE_REG(hw, IXGBE_RDBAH(j), (rdba >> 32)); |
1787 | IXGBE_WRITE_REG(hw, IXGBE_RDLEN(j), rdlen); | 1787 | IXGBE_WRITE_REG(hw, IXGBE_RDLEN(j), rdlen); |
1788 | IXGBE_WRITE_REG(hw, IXGBE_RDH(j), 0); | 1788 | IXGBE_WRITE_REG(hw, IXGBE_RDH(j), 0); |
@@ -4513,9 +4513,9 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev, | |||
4513 | !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) { | 4513 | !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) { |
4514 | pci_using_dac = 1; | 4514 | pci_using_dac = 1; |
4515 | } else { | 4515 | } else { |
4516 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 4516 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
4517 | if (err) { | 4517 | if (err) { |
4518 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 4518 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
4519 | if (err) { | 4519 | if (err) { |
4520 | dev_err(&pdev->dev, "No usable DMA " | 4520 | dev_err(&pdev->dev, "No usable DMA " |
4521 | "configuration, aborting\n"); | 4521 | "configuration, aborting\n"); |
diff --git a/drivers/net/jme.c b/drivers/net/jme.c index 860dcd98a07c..ece35040288c 100644 --- a/drivers/net/jme.c +++ b/drivers/net/jme.c | |||
@@ -2600,8 +2600,8 @@ jme_pci_dma64(struct pci_dev *pdev) | |||
2600 | if (!pci_set_consistent_dma_mask(pdev, DMA_40BIT_MASK)) | 2600 | if (!pci_set_consistent_dma_mask(pdev, DMA_40BIT_MASK)) |
2601 | return 1; | 2601 | return 1; |
2602 | 2602 | ||
2603 | if (!pci_set_dma_mask(pdev, DMA_32BIT_MASK)) | 2603 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) |
2604 | if (!pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK)) | 2604 | if (!pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32))) |
2605 | return 0; | 2605 | return 0; |
2606 | 2606 | ||
2607 | return -1; | 2607 | return -1; |
diff --git a/drivers/net/mlx4/main.c b/drivers/net/mlx4/main.c index fed53fbaf545..102bac90a302 100644 --- a/drivers/net/mlx4/main.c +++ b/drivers/net/mlx4/main.c | |||
@@ -1079,7 +1079,7 @@ static int __mlx4_init_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
1079 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); | 1079 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); |
1080 | if (err) { | 1080 | if (err) { |
1081 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n"); | 1081 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n"); |
1082 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1082 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1083 | if (err) { | 1083 | if (err) { |
1084 | dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting.\n"); | 1084 | dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting.\n"); |
1085 | goto err_release_bar2; | 1085 | goto err_release_bar2; |
@@ -1089,7 +1089,7 @@ static int __mlx4_init_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
1089 | if (err) { | 1089 | if (err) { |
1090 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit " | 1090 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit " |
1091 | "consistent PCI DMA mask.\n"); | 1091 | "consistent PCI DMA mask.\n"); |
1092 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 1092 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
1093 | if (err) { | 1093 | if (err) { |
1094 | dev_err(&pdev->dev, "Can't set consistent PCI DMA mask, " | 1094 | dev_err(&pdev->dev, "Can't set consistent PCI DMA mask, " |
1095 | "aborting.\n"); | 1095 | "aborting.\n"); |
diff --git a/drivers/net/myri10ge/myri10ge.c b/drivers/net/myri10ge/myri10ge.c index 27655466dbeb..9eed126a82f0 100644 --- a/drivers/net/myri10ge/myri10ge.c +++ b/drivers/net/myri10ge/myri10ge.c | |||
@@ -1130,7 +1130,7 @@ myri10ge_submit_8rx(struct mcp_kreq_ether_recv __iomem * dst, | |||
1130 | __be32 low; | 1130 | __be32 low; |
1131 | 1131 | ||
1132 | low = src->addr_low; | 1132 | low = src->addr_low; |
1133 | src->addr_low = htonl(DMA_32BIT_MASK); | 1133 | src->addr_low = htonl(DMA_BIT_MASK(32)); |
1134 | myri10ge_pio_copy(dst, src, 4 * sizeof(*src)); | 1134 | myri10ge_pio_copy(dst, src, 4 * sizeof(*src)); |
1135 | mb(); | 1135 | mb(); |
1136 | myri10ge_pio_copy(dst + 4, src + 4, 4 * sizeof(*src)); | 1136 | myri10ge_pio_copy(dst + 4, src + 4, 4 * sizeof(*src)); |
@@ -3798,7 +3798,7 @@ static int myri10ge_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
3798 | dev_err(&pdev->dev, | 3798 | dev_err(&pdev->dev, |
3799 | "64-bit pci address mask was refused, " | 3799 | "64-bit pci address mask was refused, " |
3800 | "trying 32-bit\n"); | 3800 | "trying 32-bit\n"); |
3801 | status = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 3801 | status = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
3802 | } | 3802 | } |
3803 | if (status != 0) { | 3803 | if (status != 0) { |
3804 | dev_err(&pdev->dev, "Error %d setting DMA mask\n", status); | 3804 | dev_err(&pdev->dev, "Error %d setting DMA mask\n", status); |
diff --git a/drivers/net/niu.c b/drivers/net/niu.c index 02c37e2f08a9..73cac6c78cb6 100644 --- a/drivers/net/niu.c +++ b/drivers/net/niu.c | |||
@@ -9889,8 +9889,8 @@ static int __devinit niu_pci_init_one(struct pci_dev *pdev, | |||
9889 | goto err_out_release_parent; | 9889 | goto err_out_release_parent; |
9890 | } | 9890 | } |
9891 | } | 9891 | } |
9892 | if (err || dma_mask == DMA_32BIT_MASK) { | 9892 | if (err || dma_mask == DMA_BIT_MASK(32)) { |
9893 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 9893 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
9894 | if (err) { | 9894 | if (err) { |
9895 | dev_err(&pdev->dev, PFX "No usable DMA configuration, " | 9895 | dev_err(&pdev->dev, PFX "No usable DMA configuration, " |
9896 | "aborting.\n"); | 9896 | "aborting.\n"); |
diff --git a/drivers/net/ns83820.c b/drivers/net/ns83820.c index e30ab06e7103..d531614a90b5 100644 --- a/drivers/net/ns83820.c +++ b/drivers/net/ns83820.c | |||
@@ -1975,7 +1975,7 @@ static int __devinit ns83820_init_one(struct pci_dev *pci_dev, | |||
1975 | if (sizeof(dma_addr_t) == 8 && | 1975 | if (sizeof(dma_addr_t) == 8 && |
1976 | !pci_set_dma_mask(pci_dev, DMA_BIT_MASK(64))) { | 1976 | !pci_set_dma_mask(pci_dev, DMA_BIT_MASK(64))) { |
1977 | using_dac = 1; | 1977 | using_dac = 1; |
1978 | } else if (!pci_set_dma_mask(pci_dev, DMA_32BIT_MASK)) { | 1978 | } else if (!pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32))) { |
1979 | using_dac = 0; | 1979 | using_dac = 0; |
1980 | } else { | 1980 | } else { |
1981 | dev_warn(&pci_dev->dev, "pci_set_dma_mask failed!\n"); | 1981 | dev_warn(&pci_dev->dev, "pci_set_dma_mask failed!\n"); |
diff --git a/drivers/net/qla3xxx.c b/drivers/net/qla3xxx.c index aef047e4515a..cadc32c94c1e 100644 --- a/drivers/net/qla3xxx.c +++ b/drivers/net/qla3xxx.c | |||
@@ -3937,9 +3937,9 @@ static int __devinit ql3xxx_probe(struct pci_dev *pdev, | |||
3937 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 3937 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
3938 | pci_using_dac = 1; | 3938 | pci_using_dac = 1; |
3939 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); | 3939 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
3940 | } else if (!(err = pci_set_dma_mask(pdev, DMA_32BIT_MASK))) { | 3940 | } else if (!(err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)))) { |
3941 | pci_using_dac = 0; | 3941 | pci_using_dac = 0; |
3942 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 3942 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
3943 | } | 3943 | } |
3944 | 3944 | ||
3945 | if (err) { | 3945 | if (err) { |
diff --git a/drivers/net/qlge/qlge_main.c b/drivers/net/qlge/qlge_main.c index 0add30d38d62..c92ced247947 100644 --- a/drivers/net/qlge/qlge_main.c +++ b/drivers/net/qlge/qlge_main.c | |||
@@ -3730,9 +3730,9 @@ static int __devinit ql_init_device(struct pci_dev *pdev, | |||
3730 | set_bit(QL_DMA64, &qdev->flags); | 3730 | set_bit(QL_DMA64, &qdev->flags); |
3731 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); | 3731 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
3732 | } else { | 3732 | } else { |
3733 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 3733 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
3734 | if (!err) | 3734 | if (!err) |
3735 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 3735 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
3736 | } | 3736 | } |
3737 | 3737 | ||
3738 | if (err) { | 3738 | if (err) { |
diff --git a/drivers/net/r6040.c b/drivers/net/r6040.c index 0a37f9902a07..5e8540b6ffa1 100644 --- a/drivers/net/r6040.c +++ b/drivers/net/r6040.c | |||
@@ -1085,13 +1085,13 @@ static int __devinit r6040_init_one(struct pci_dev *pdev, | |||
1085 | goto err_out; | 1085 | goto err_out; |
1086 | 1086 | ||
1087 | /* this should always be supported */ | 1087 | /* this should always be supported */ |
1088 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1088 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1089 | if (err) { | 1089 | if (err) { |
1090 | printk(KERN_ERR DRV_NAME ": 32-bit PCI DMA addresses" | 1090 | printk(KERN_ERR DRV_NAME ": 32-bit PCI DMA addresses" |
1091 | "not supported by the card\n"); | 1091 | "not supported by the card\n"); |
1092 | goto err_out; | 1092 | goto err_out; |
1093 | } | 1093 | } |
1094 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 1094 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
1095 | if (err) { | 1095 | if (err) { |
1096 | printk(KERN_ERR DRV_NAME ": 32-bit PCI DMA addresses" | 1096 | printk(KERN_ERR DRV_NAME ": 32-bit PCI DMA addresses" |
1097 | "not supported by the card\n"); | 1097 | "not supported by the card\n"); |
diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c index fe676d38d342..0b6e8c896835 100644 --- a/drivers/net/r8169.c +++ b/drivers/net/r8169.c | |||
@@ -1148,7 +1148,7 @@ static void rtl8169_update_counters(struct net_device *dev) | |||
1148 | return; | 1148 | return; |
1149 | 1149 | ||
1150 | RTL_W32(CounterAddrHigh, (u64)paddr >> 32); | 1150 | RTL_W32(CounterAddrHigh, (u64)paddr >> 32); |
1151 | cmd = (u64)paddr & DMA_32BIT_MASK; | 1151 | cmd = (u64)paddr & DMA_BIT_MASK(32); |
1152 | RTL_W32(CounterAddrLow, cmd); | 1152 | RTL_W32(CounterAddrLow, cmd); |
1153 | RTL_W32(CounterAddrLow, cmd | CounterDump); | 1153 | RTL_W32(CounterAddrLow, cmd | CounterDump); |
1154 | 1154 | ||
@@ -2050,7 +2050,7 @@ rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2050 | tp->cp_cmd |= PCIDAC; | 2050 | tp->cp_cmd |= PCIDAC; |
2051 | dev->features |= NETIF_F_HIGHDMA; | 2051 | dev->features |= NETIF_F_HIGHDMA; |
2052 | } else { | 2052 | } else { |
2053 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 2053 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
2054 | if (rc < 0) { | 2054 | if (rc < 0) { |
2055 | if (netif_msg_probe(tp)) { | 2055 | if (netif_msg_probe(tp)) { |
2056 | dev_err(&pdev->dev, | 2056 | dev_err(&pdev->dev, |
@@ -2343,9 +2343,9 @@ static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp, | |||
2343 | * Switching from MMIO to I/O access fixes the issue as well. | 2343 | * Switching from MMIO to I/O access fixes the issue as well. |
2344 | */ | 2344 | */ |
2345 | RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32); | 2345 | RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32); |
2346 | RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_32BIT_MASK); | 2346 | RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32)); |
2347 | RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32); | 2347 | RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32); |
2348 | RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_32BIT_MASK); | 2348 | RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32)); |
2349 | } | 2349 | } |
2350 | 2350 | ||
2351 | static u16 rtl_rw_cpluscmd(void __iomem *ioaddr) | 2351 | static u16 rtl_rw_cpluscmd(void __iomem *ioaddr) |
diff --git a/drivers/net/s2io.c b/drivers/net/s2io.c index 7c8d5613a1da..1a4979f27fb5 100644 --- a/drivers/net/s2io.c +++ b/drivers/net/s2io.c | |||
@@ -7786,7 +7786,7 @@ s2io_init_nic(struct pci_dev *pdev, const struct pci_device_id *pre) | |||
7786 | pci_disable_device(pdev); | 7786 | pci_disable_device(pdev); |
7787 | return -ENOMEM; | 7787 | return -ENOMEM; |
7788 | } | 7788 | } |
7789 | } else if (!pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 7789 | } else if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
7790 | DBG_PRINT(INIT_DBG, "s2io_init_nic: Using 32bit DMA\n"); | 7790 | DBG_PRINT(INIT_DBG, "s2io_init_nic: Using 32bit DMA\n"); |
7791 | } else { | 7791 | } else { |
7792 | pci_disable_device(pdev); | 7792 | pci_disable_device(pdev); |
diff --git a/drivers/net/sc92031.c b/drivers/net/sc92031.c index c13cbf099b88..18821f217e19 100644 --- a/drivers/net/sc92031.c +++ b/drivers/net/sc92031.c | |||
@@ -1427,11 +1427,11 @@ static int __devinit sc92031_probe(struct pci_dev *pdev, | |||
1427 | 1427 | ||
1428 | pci_set_master(pdev); | 1428 | pci_set_master(pdev); |
1429 | 1429 | ||
1430 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1430 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1431 | if (unlikely(err < 0)) | 1431 | if (unlikely(err < 0)) |
1432 | goto out_set_dma_mask; | 1432 | goto out_set_dma_mask; |
1433 | 1433 | ||
1434 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 1434 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
1435 | if (unlikely(err < 0)) | 1435 | if (unlikely(err < 0)) |
1436 | goto out_set_dma_mask; | 1436 | goto out_set_dma_mask; |
1437 | 1437 | ||
diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c index a9732686134b..55ccd51d247e 100644 --- a/drivers/net/sis190.c +++ b/drivers/net/sis190.c | |||
@@ -1467,7 +1467,7 @@ static struct net_device * __devinit sis190_init_board(struct pci_dev *pdev) | |||
1467 | goto err_pci_disable_2; | 1467 | goto err_pci_disable_2; |
1468 | } | 1468 | } |
1469 | 1469 | ||
1470 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1470 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1471 | if (rc < 0) { | 1471 | if (rc < 0) { |
1472 | net_probe(tp, KERN_ERR "%s: DMA configuration failed.\n", | 1472 | net_probe(tp, KERN_ERR "%s: DMA configuration failed.\n", |
1473 | pci_name(pdev)); | 1473 | pci_name(pdev)); |
diff --git a/drivers/net/sis900.c b/drivers/net/sis900.c index 8a70de72ea2c..2d4617b3e208 100644 --- a/drivers/net/sis900.c +++ b/drivers/net/sis900.c | |||
@@ -432,7 +432,7 @@ static int __devinit sis900_probe(struct pci_dev *pci_dev, | |||
432 | ret = pci_enable_device(pci_dev); | 432 | ret = pci_enable_device(pci_dev); |
433 | if(ret) return ret; | 433 | if(ret) return ret; |
434 | 434 | ||
435 | i = pci_set_dma_mask(pci_dev, DMA_32BIT_MASK); | 435 | i = pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32)); |
436 | if(i){ | 436 | if(i){ |
437 | printk(KERN_ERR "sis900.c: architecture does not support " | 437 | printk(KERN_ERR "sis900.c: architecture does not support " |
438 | "32bit PCI busmaster DMA\n"); | 438 | "32bit PCI busmaster DMA\n"); |
diff --git a/drivers/net/skge.c b/drivers/net/skge.c index 18a7b662aff1..b8978d4af1b7 100644 --- a/drivers/net/skge.c +++ b/drivers/net/skge.c | |||
@@ -3915,9 +3915,9 @@ static int __devinit skge_probe(struct pci_dev *pdev, | |||
3915 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 3915 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
3916 | using_dac = 1; | 3916 | using_dac = 1; |
3917 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); | 3917 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
3918 | } else if (!(err = pci_set_dma_mask(pdev, DMA_32BIT_MASK))) { | 3918 | } else if (!(err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)))) { |
3919 | using_dac = 0; | 3919 | using_dac = 0; |
3920 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 3920 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
3921 | } | 3921 | } |
3922 | 3922 | ||
3923 | if (err) { | 3923 | if (err) { |
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c index da570f44b12b..a2ff9cb1e7ac 100644 --- a/drivers/net/sky2.c +++ b/drivers/net/sky2.c | |||
@@ -4383,7 +4383,7 @@ static int __devinit sky2_probe(struct pci_dev *pdev, | |||
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; |
diff --git a/drivers/net/smsc9420.c b/drivers/net/smsc9420.c index 5959ae86e57d..60abdb1081ad 100644 --- a/drivers/net/smsc9420.c +++ b/drivers/net/smsc9420.c | |||
@@ -1598,7 +1598,7 @@ smsc9420_probe(struct pci_dev *pdev, const struct pci_device_id *id) | |||
1598 | goto out_free_netdev_2; | 1598 | goto out_free_netdev_2; |
1599 | } | 1599 | } |
1600 | 1600 | ||
1601 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 1601 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
1602 | printk(KERN_ERR "No usable DMA configuration, aborting.\n"); | 1602 | printk(KERN_ERR "No usable DMA configuration, aborting.\n"); |
1603 | goto out_free_regions_3; | 1603 | goto out_free_regions_3; |
1604 | } | 1604 | } |
diff --git a/drivers/net/sungem.c b/drivers/net/sungem.c index 2312d10f3b54..d2dfe0ab5106 100644 --- a/drivers/net/sungem.c +++ b/drivers/net/sungem.c | |||
@@ -3045,7 +3045,7 @@ static int __devinit gem_init_one(struct pci_dev *pdev, | |||
3045 | !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 3045 | !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
3046 | pci_using_dac = 1; | 3046 | pci_using_dac = 1; |
3047 | } else { | 3047 | } else { |
3048 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 3048 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
3049 | if (err) { | 3049 | if (err) { |
3050 | printk(KERN_ERR PFX "No usable DMA configuration, " | 3050 | printk(KERN_ERR PFX "No usable DMA configuration, " |
3051 | "aborting.\n"); | 3051 | "aborting.\n"); |
diff --git a/drivers/net/tehuti.c b/drivers/net/tehuti.c index d77a0918a325..7f4a9683ba1e 100644 --- a/drivers/net/tehuti.c +++ b/drivers/net/tehuti.c | |||
@@ -1945,8 +1945,8 @@ bdx_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1945 | !(err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)))) { | 1945 | !(err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)))) { |
1946 | pci_using_dac = 1; | 1946 | pci_using_dac = 1; |
1947 | } else { | 1947 | } else { |
1948 | if ((err = pci_set_dma_mask(pdev, DMA_32BIT_MASK)) || | 1948 | if ((err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) || |
1949 | (err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK))) { | 1949 | (err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)))) { |
1950 | printk(KERN_ERR "tehuti: No usable DMA configuration" | 1950 | printk(KERN_ERR "tehuti: No usable DMA configuration" |
1951 | ", aborting\n"); | 1951 | ", aborting\n"); |
1952 | goto err_dma; | 1952 | goto err_dma; |
diff --git a/drivers/net/tehuti.h b/drivers/net/tehuti.h index 121dda917fdc..4fc875e5dcdd 100644 --- a/drivers/net/tehuti.h +++ b/drivers/net/tehuti.h | |||
@@ -99,10 +99,6 @@ | |||
99 | #define READ_REG(pp, reg) readl(pp->pBdxRegs + reg) | 99 | #define READ_REG(pp, reg) readl(pp->pBdxRegs + reg) |
100 | #define WRITE_REG(pp, reg, val) writel(val, pp->pBdxRegs + reg) | 100 | #define WRITE_REG(pp, reg, val) writel(val, pp->pBdxRegs + reg) |
101 | 101 | ||
102 | #ifndef DMA_32BIT_MASK | ||
103 | # define DMA_32BIT_MASK 0x00000000ffffffffULL | ||
104 | #endif | ||
105 | |||
106 | #ifndef NET_IP_ALIGN | 102 | #ifndef NET_IP_ALIGN |
107 | # define NET_IP_ALIGN 2 | 103 | # define NET_IP_ALIGN 2 |
108 | #endif | 104 | #endif |
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 5ba91d7f7587..6a736dda3ee2 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
@@ -13228,7 +13228,7 @@ static int __devinit tg3_init_one(struct pci_dev *pdev, | |||
13228 | * do DMA address check in tg3_start_xmit(). | 13228 | * do DMA address check in tg3_start_xmit(). |
13229 | */ | 13229 | */ |
13230 | if (tp->tg3_flags2 & TG3_FLG2_IS_5788) | 13230 | if (tp->tg3_flags2 & TG3_FLG2_IS_5788) |
13231 | persist_dma_mask = dma_mask = DMA_32BIT_MASK; | 13231 | persist_dma_mask = dma_mask = DMA_BIT_MASK(32); |
13232 | else if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) { | 13232 | else if (tp->tg3_flags & TG3_FLAG_40BIT_DMA_BUG) { |
13233 | persist_dma_mask = dma_mask = DMA_BIT_MASK(40); | 13233 | persist_dma_mask = dma_mask = DMA_BIT_MASK(40); |
13234 | #ifdef CONFIG_HIGHMEM | 13234 | #ifdef CONFIG_HIGHMEM |
@@ -13238,7 +13238,7 @@ static int __devinit tg3_init_one(struct pci_dev *pdev, | |||
13238 | persist_dma_mask = dma_mask = DMA_BIT_MASK(64); | 13238 | persist_dma_mask = dma_mask = DMA_BIT_MASK(64); |
13239 | 13239 | ||
13240 | /* Configure DMA attributes. */ | 13240 | /* Configure DMA attributes. */ |
13241 | if (dma_mask > DMA_32BIT_MASK) { | 13241 | if (dma_mask > DMA_BIT_MASK(32)) { |
13242 | err = pci_set_dma_mask(pdev, dma_mask); | 13242 | err = pci_set_dma_mask(pdev, dma_mask); |
13243 | if (!err) { | 13243 | if (!err) { |
13244 | dev->features |= NETIF_F_HIGHDMA; | 13244 | dev->features |= NETIF_F_HIGHDMA; |
@@ -13251,8 +13251,8 @@ static int __devinit tg3_init_one(struct pci_dev *pdev, | |||
13251 | } | 13251 | } |
13252 | } | 13252 | } |
13253 | } | 13253 | } |
13254 | if (err || dma_mask == DMA_32BIT_MASK) { | 13254 | if (err || dma_mask == DMA_BIT_MASK(32)) { |
13255 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 13255 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
13256 | if (err) { | 13256 | if (err) { |
13257 | printk(KERN_ERR PFX "No usable DMA configuration, " | 13257 | printk(KERN_ERR PFX "No usable DMA configuration, " |
13258 | "aborting.\n"); | 13258 | "aborting.\n"); |
@@ -13393,7 +13393,7 @@ static int __devinit tg3_init_one(struct pci_dev *pdev, | |||
13393 | (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) != 0); | 13393 | (tp->tg3_flags2 & TG3_FLG2_TSO_CAPABLE) != 0); |
13394 | printk(KERN_INFO "%s: dma_rwctrl[%08x] dma_mask[%d-bit]\n", | 13394 | printk(KERN_INFO "%s: dma_rwctrl[%08x] dma_mask[%d-bit]\n", |
13395 | dev->name, tp->dma_rwctrl, | 13395 | dev->name, tp->dma_rwctrl, |
13396 | (pdev->dma_mask == DMA_32BIT_MASK) ? 32 : | 13396 | (pdev->dma_mask == DMA_BIT_MASK(32)) ? 32 : |
13397 | (((u64) pdev->dma_mask == DMA_BIT_MASK(40)) ? 40 : 64)); | 13397 | (((u64) pdev->dma_mask == DMA_BIT_MASK(40)) ? 40 : 64)); |
13398 | 13398 | ||
13399 | return 0; | 13399 | return 0; |
diff --git a/drivers/net/tlan.c b/drivers/net/tlan.c index 68b967b585aa..aa6964922d5e 100644 --- a/drivers/net/tlan.c +++ b/drivers/net/tlan.c | |||
@@ -570,7 +570,7 @@ static int __devinit TLan_probe1(struct pci_dev *pdev, | |||
570 | 570 | ||
571 | priv->adapter = &board_info[ent->driver_data]; | 571 | priv->adapter = &board_info[ent->driver_data]; |
572 | 572 | ||
573 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 573 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
574 | if (rc) { | 574 | if (rc) { |
575 | printk(KERN_ERR "TLAN: No suitable PCI mapping available.\n"); | 575 | printk(KERN_ERR "TLAN: No suitable PCI mapping available.\n"); |
576 | goto err_out_free_dev; | 576 | goto err_out_free_dev; |
diff --git a/drivers/net/tokenring/lanstreamer.c b/drivers/net/tokenring/lanstreamer.c index f309b8f703bd..2e70ee8f1459 100644 --- a/drivers/net/tokenring/lanstreamer.c +++ b/drivers/net/tokenring/lanstreamer.c | |||
@@ -267,7 +267,7 @@ static int __devinit streamer_init_one(struct pci_dev *pdev, | |||
267 | #endif | 267 | #endif |
268 | #endif | 268 | #endif |
269 | 269 | ||
270 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 270 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
271 | if (rc) { | 271 | if (rc) { |
272 | printk(KERN_ERR "%s: No suitable PCI mapping available.\n", | 272 | printk(KERN_ERR "%s: No suitable PCI mapping available.\n", |
273 | dev->name); | 273 | dev->name); |
diff --git a/drivers/net/tulip/dmfe.c b/drivers/net/tulip/dmfe.c index e2c9d0f5a755..f2e669974c78 100644 --- a/drivers/net/tulip/dmfe.c +++ b/drivers/net/tulip/dmfe.c | |||
@@ -383,7 +383,7 @@ static int __devinit dmfe_init_one (struct pci_dev *pdev, | |||
383 | return -ENOMEM; | 383 | return -ENOMEM; |
384 | SET_NETDEV_DEV(dev, &pdev->dev); | 384 | SET_NETDEV_DEV(dev, &pdev->dev); |
385 | 385 | ||
386 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 386 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
387 | printk(KERN_WARNING DRV_NAME | 387 | printk(KERN_WARNING DRV_NAME |
388 | ": 32-bit PCI DMA not available.\n"); | 388 | ": 32-bit PCI DMA not available.\n"); |
389 | err = -ENODEV; | 389 | err = -ENODEV; |
diff --git a/drivers/net/tulip/uli526x.c b/drivers/net/tulip/uli526x.c index c227db079621..8761a5a5bd79 100644 --- a/drivers/net/tulip/uli526x.c +++ b/drivers/net/tulip/uli526x.c | |||
@@ -282,7 +282,7 @@ static int __devinit uli526x_init_one (struct pci_dev *pdev, | |||
282 | return -ENOMEM; | 282 | return -ENOMEM; |
283 | SET_NETDEV_DEV(dev, &pdev->dev); | 283 | SET_NETDEV_DEV(dev, &pdev->dev); |
284 | 284 | ||
285 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 285 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
286 | printk(KERN_WARNING DRV_NAME ": 32-bit PCI DMA not available.\n"); | 286 | printk(KERN_WARNING DRV_NAME ": 32-bit PCI DMA not available.\n"); |
287 | err = -ENODEV; | 287 | err = -ENODEV; |
288 | goto err_out_free; | 288 | goto err_out_free; |
diff --git a/drivers/net/tulip/winbond-840.c b/drivers/net/tulip/winbond-840.c index c61a01b029af..264e61404f34 100644 --- a/drivers/net/tulip/winbond-840.c +++ b/drivers/net/tulip/winbond-840.c | |||
@@ -375,7 +375,7 @@ static int __devinit w840_probe1 (struct pci_dev *pdev, | |||
375 | 375 | ||
376 | irq = pdev->irq; | 376 | irq = pdev->irq; |
377 | 377 | ||
378 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 378 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
379 | printk(KERN_WARNING "Winbond-840: Device %s disabled due to DMA limitations.\n", | 379 | printk(KERN_WARNING "Winbond-840: Device %s disabled due to DMA limitations.\n", |
380 | pci_name(pdev)); | 380 | pci_name(pdev)); |
381 | return -EIO; | 381 | return -EIO; |
diff --git a/drivers/net/typhoon.c b/drivers/net/typhoon.c index 9dd4f76a2ff5..cf25eb41b1ce 100644 --- a/drivers/net/typhoon.c +++ b/drivers/net/typhoon.c | |||
@@ -2406,7 +2406,7 @@ typhoon_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2406 | goto error_out_disable; | 2406 | goto error_out_disable; |
2407 | } | 2407 | } |
2408 | 2408 | ||
2409 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 2409 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
2410 | if(err < 0) { | 2410 | if(err < 0) { |
2411 | printk(ERR_PFX "%s: No usable DMA configuration\n", | 2411 | printk(ERR_PFX "%s: No usable DMA configuration\n", |
2412 | pci_name(pdev)); | 2412 | pci_name(pdev)); |
diff --git a/drivers/net/via-rhine.c b/drivers/net/via-rhine.c index 880eaf07413b..45daba726b66 100644 --- a/drivers/net/via-rhine.c +++ b/drivers/net/via-rhine.c | |||
@@ -686,7 +686,7 @@ static int __devinit rhine_init_one(struct pci_dev *pdev, | |||
686 | goto err_out; | 686 | goto err_out; |
687 | 687 | ||
688 | /* this should always be supported */ | 688 | /* this should always be supported */ |
689 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 689 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
690 | if (rc) { | 690 | if (rc) { |
691 | printk(KERN_ERR "32-bit PCI DMA addresses not supported by " | 691 | printk(KERN_ERR "32-bit PCI DMA addresses not supported by " |
692 | "the card!?\n"); | 692 | "the card!?\n"); |
diff --git a/drivers/net/wan/wanxl.c b/drivers/net/wan/wanxl.c index 887acb0dc807..850d70d7b05d 100644 --- a/drivers/net/wan/wanxl.c +++ b/drivers/net/wan/wanxl.c | |||
@@ -633,8 +633,8 @@ static int __devinit wanxl_pci_init_one(struct pci_dev *pdev, | |||
633 | /* FIXME when PCI/DMA subsystems are fixed. | 633 | /* FIXME when PCI/DMA subsystems are fixed. |
634 | We set both dma_mask and consistent_dma_mask back to 32 bits | 634 | We set both dma_mask and consistent_dma_mask back to 32 bits |
635 | to indicate the card can do 32-bit DMA addressing */ | 635 | to indicate the card can do 32-bit DMA addressing */ |
636 | if (pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK) || | 636 | if (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)) || |
637 | pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 637 | pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
638 | printk(KERN_ERR "wanXL: No usable DMA configuration\n"); | 638 | printk(KERN_ERR "wanXL: No usable DMA configuration\n"); |
639 | wanxl_pci_remove_one(pdev); | 639 | wanxl_pci_remove_one(pdev); |
640 | return -EIO; | 640 | return -EIO; |
diff --git a/drivers/net/wireless/adm8211.c b/drivers/net/wireless/adm8211.c index fc0897fb2239..f71821795018 100644 --- a/drivers/net/wireless/adm8211.c +++ b/drivers/net/wireless/adm8211.c | |||
@@ -1804,8 +1804,8 @@ static int __devinit adm8211_probe(struct pci_dev *pdev, | |||
1804 | return err; /* someone else grabbed it? don't disable it */ | 1804 | return err; /* someone else grabbed it? don't disable it */ |
1805 | } | 1805 | } |
1806 | 1806 | ||
1807 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) || | 1807 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) || |
1808 | pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK)) { | 1808 | pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32))) { |
1809 | printk(KERN_ERR "%s (adm8211): No suitable DMA available\n", | 1809 | printk(KERN_ERR "%s (adm8211): No suitable DMA available\n", |
1810 | pci_name(pdev)); | 1810 | pci_name(pdev)); |
1811 | goto err_free_reg; | 1811 | goto err_free_reg; |
diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c index 5d57d774e466..a08bc8a4fb69 100644 --- a/drivers/net/wireless/ath5k/base.c +++ b/drivers/net/wireless/ath5k/base.c | |||
@@ -445,7 +445,7 @@ ath5k_pci_probe(struct pci_dev *pdev, | |||
445 | } | 445 | } |
446 | 446 | ||
447 | /* XXX 32-bit addressing only */ | 447 | /* XXX 32-bit addressing only */ |
448 | ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 448 | ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
449 | if (ret) { | 449 | if (ret) { |
450 | dev_err(&pdev->dev, "32-bit DMA not available\n"); | 450 | dev_err(&pdev->dev, "32-bit DMA not available\n"); |
451 | goto err_dis; | 451 | goto err_dis; |
diff --git a/drivers/net/wireless/b43/dma.c b/drivers/net/wireless/b43/dma.c index 461d680d2cec..de1964f7d9e0 100644 --- a/drivers/net/wireless/b43/dma.c +++ b/drivers/net/wireless/b43/dma.c | |||
@@ -777,7 +777,7 @@ static u64 supported_dma_mask(struct b43_wldev *dev) | |||
777 | b43_write32(dev, mmio_base + B43_DMA32_TXCTL, B43_DMA32_TXADDREXT_MASK); | 777 | b43_write32(dev, mmio_base + B43_DMA32_TXCTL, B43_DMA32_TXADDREXT_MASK); |
778 | tmp = b43_read32(dev, mmio_base + B43_DMA32_TXCTL); | 778 | tmp = b43_read32(dev, mmio_base + B43_DMA32_TXCTL); |
779 | if (tmp & B43_DMA32_TXADDREXT_MASK) | 779 | if (tmp & B43_DMA32_TXADDREXT_MASK) |
780 | return DMA_32BIT_MASK; | 780 | return DMA_BIT_MASK(32); |
781 | 781 | ||
782 | return DMA_30BIT_MASK; | 782 | return DMA_30BIT_MASK; |
783 | } | 783 | } |
@@ -786,7 +786,7 @@ static enum b43_dmatype dma_mask_to_engine_type(u64 dmamask) | |||
786 | { | 786 | { |
787 | if (dmamask == DMA_30BIT_MASK) | 787 | if (dmamask == DMA_30BIT_MASK) |
788 | return B43_DMA_30BIT; | 788 | return B43_DMA_30BIT; |
789 | if (dmamask == DMA_32BIT_MASK) | 789 | if (dmamask == DMA_BIT_MASK(32)) |
790 | return B43_DMA_32BIT; | 790 | return B43_DMA_32BIT; |
791 | if (dmamask == DMA_BIT_MASK(64)) | 791 | if (dmamask == DMA_BIT_MASK(64)) |
792 | return B43_DMA_64BIT; | 792 | return B43_DMA_64BIT; |
@@ -1000,11 +1000,11 @@ static int b43_dma_set_mask(struct b43_wldev *dev, u64 mask) | |||
1000 | if (!err) | 1000 | if (!err) |
1001 | break; | 1001 | break; |
1002 | if (mask == DMA_BIT_MASK(64)) { | 1002 | if (mask == DMA_BIT_MASK(64)) { |
1003 | mask = DMA_32BIT_MASK; | 1003 | mask = DMA_BIT_MASK(32); |
1004 | fallback = 1; | 1004 | fallback = 1; |
1005 | continue; | 1005 | continue; |
1006 | } | 1006 | } |
1007 | if (mask == DMA_32BIT_MASK) { | 1007 | if (mask == DMA_BIT_MASK(32)) { |
1008 | mask = DMA_30BIT_MASK; | 1008 | mask = DMA_30BIT_MASK; |
1009 | fallback = 1; | 1009 | fallback = 1; |
1010 | continue; | 1010 | continue; |
diff --git a/drivers/net/wireless/b43legacy/dma.c b/drivers/net/wireless/b43legacy/dma.c index 61bb91266aa8..1d3e0d239314 100644 --- a/drivers/net/wireless/b43legacy/dma.c +++ b/drivers/net/wireless/b43legacy/dma.c | |||
@@ -854,7 +854,7 @@ static u64 supported_dma_mask(struct b43legacy_wldev *dev) | |||
854 | tmp = b43legacy_read32(dev, mmio_base + | 854 | tmp = b43legacy_read32(dev, mmio_base + |
855 | B43legacy_DMA32_TXCTL); | 855 | B43legacy_DMA32_TXCTL); |
856 | if (tmp & B43legacy_DMA32_TXADDREXT_MASK) | 856 | if (tmp & B43legacy_DMA32_TXADDREXT_MASK) |
857 | return DMA_32BIT_MASK; | 857 | return DMA_BIT_MASK(32); |
858 | 858 | ||
859 | return DMA_30BIT_MASK; | 859 | return DMA_30BIT_MASK; |
860 | } | 860 | } |
@@ -863,7 +863,7 @@ static enum b43legacy_dmatype dma_mask_to_engine_type(u64 dmamask) | |||
863 | { | 863 | { |
864 | if (dmamask == DMA_30BIT_MASK) | 864 | if (dmamask == DMA_30BIT_MASK) |
865 | return B43legacy_DMA_30BIT; | 865 | return B43legacy_DMA_30BIT; |
866 | if (dmamask == DMA_32BIT_MASK) | 866 | if (dmamask == DMA_BIT_MASK(32)) |
867 | return B43legacy_DMA_32BIT; | 867 | return B43legacy_DMA_32BIT; |
868 | if (dmamask == DMA_BIT_MASK(64)) | 868 | if (dmamask == DMA_BIT_MASK(64)) |
869 | return B43legacy_DMA_64BIT; | 869 | return B43legacy_DMA_64BIT; |
@@ -1043,11 +1043,11 @@ static int b43legacy_dma_set_mask(struct b43legacy_wldev *dev, u64 mask) | |||
1043 | if (!err) | 1043 | if (!err) |
1044 | break; | 1044 | break; |
1045 | if (mask == DMA_BIT_MASK(64)) { | 1045 | if (mask == DMA_BIT_MASK(64)) { |
1046 | mask = DMA_32BIT_MASK; | 1046 | mask = DMA_BIT_MASK(32); |
1047 | fallback = 1; | 1047 | fallback = 1; |
1048 | continue; | 1048 | continue; |
1049 | } | 1049 | } |
1050 | if (mask == DMA_32BIT_MASK) { | 1050 | if (mask == DMA_BIT_MASK(32)) { |
1051 | mask = DMA_30BIT_MASK; | 1051 | mask = DMA_30BIT_MASK; |
1052 | fallback = 1; | 1052 | fallback = 1; |
1053 | continue; | 1053 | continue; |
diff --git a/drivers/net/wireless/ipw2x00/ipw2100.c b/drivers/net/wireless/ipw2x00/ipw2100.c index f4e963ba768b..97e5647ff050 100644 --- a/drivers/net/wireless/ipw2x00/ipw2100.c +++ b/drivers/net/wireless/ipw2x00/ipw2100.c | |||
@@ -6207,7 +6207,7 @@ static int ipw2100_pci_init_one(struct pci_dev *pci_dev, | |||
6207 | pci_set_master(pci_dev); | 6207 | pci_set_master(pci_dev); |
6208 | pci_set_drvdata(pci_dev, priv); | 6208 | pci_set_drvdata(pci_dev, priv); |
6209 | 6209 | ||
6210 | err = pci_set_dma_mask(pci_dev, DMA_32BIT_MASK); | 6210 | err = pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32)); |
6211 | if (err) { | 6211 | if (err) { |
6212 | printk(KERN_WARNING DRV_NAME | 6212 | printk(KERN_WARNING DRV_NAME |
6213 | "Error calling pci_set_dma_mask.\n"); | 6213 | "Error calling pci_set_dma_mask.\n"); |
diff --git a/drivers/net/wireless/ipw2x00/ipw2200.c b/drivers/net/wireless/ipw2x00/ipw2200.c index e17a4593e1f5..bd4dbcfe1bbe 100644 --- a/drivers/net/wireless/ipw2x00/ipw2200.c +++ b/drivers/net/wireless/ipw2x00/ipw2200.c | |||
@@ -11631,9 +11631,9 @@ static int __devinit ipw_pci_probe(struct pci_dev *pdev, | |||
11631 | 11631 | ||
11632 | pci_set_master(pdev); | 11632 | pci_set_master(pdev); |
11633 | 11633 | ||
11634 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 11634 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
11635 | if (!err) | 11635 | if (!err) |
11636 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 11636 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
11637 | if (err) { | 11637 | if (err) { |
11638 | printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n"); | 11638 | printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n"); |
11639 | goto out_pci_disable_device; | 11639 | goto out_pci_disable_device; |
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index 9d5f97dd7c73..ce729281ff62 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c | |||
@@ -4998,9 +4998,9 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e | |||
4998 | 4998 | ||
4999 | pci_set_master(pdev); | 4999 | pci_set_master(pdev); |
5000 | 5000 | ||
5001 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 5001 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
5002 | if (!err) | 5002 | if (!err) |
5003 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 5003 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
5004 | if (err) { | 5004 | if (err) { |
5005 | IWL_WARN(priv, "No suitable DMA available.\n"); | 5005 | IWL_WARN(priv, "No suitable DMA available.\n"); |
5006 | goto out_pci_disable_device; | 5006 | goto out_pci_disable_device; |
diff --git a/drivers/net/wireless/prism54/islpci_hotplug.c b/drivers/net/wireless/prism54/islpci_hotplug.c index 9a72b1e3e163..30876728d7e6 100644 --- a/drivers/net/wireless/prism54/islpci_hotplug.c +++ b/drivers/net/wireless/prism54/islpci_hotplug.c | |||
@@ -120,7 +120,7 @@ prism54_probe(struct pci_dev *pdev, const struct pci_device_id *id) | |||
120 | } | 120 | } |
121 | 121 | ||
122 | /* enable PCI DMA */ | 122 | /* enable PCI DMA */ |
123 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 123 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
124 | printk(KERN_ERR "%s: 32-bit PCI DMA not supported", DRV_NAME); | 124 | printk(KERN_ERR "%s: 32-bit PCI DMA not supported", DRV_NAME); |
125 | goto do_pci_disable_device; | 125 | goto do_pci_disable_device; |
126 | } | 126 | } |
diff --git a/drivers/net/wireless/rt2x00/rt2x00pci.c b/drivers/net/wireless/rt2x00/rt2x00pci.c index e616c20d4a78..43fa0f849003 100644 --- a/drivers/net/wireless/rt2x00/rt2x00pci.c +++ b/drivers/net/wireless/rt2x00/rt2x00pci.c | |||
@@ -288,7 +288,7 @@ int rt2x00pci_probe(struct pci_dev *pci_dev, const struct pci_device_id *id) | |||
288 | if (pci_set_mwi(pci_dev)) | 288 | if (pci_set_mwi(pci_dev)) |
289 | ERROR_PROBE("MWI not available.\n"); | 289 | ERROR_PROBE("MWI not available.\n"); |
290 | 290 | ||
291 | if (dma_set_mask(&pci_dev->dev, DMA_32BIT_MASK)) { | 291 | if (dma_set_mask(&pci_dev->dev, DMA_BIT_MASK(32))) { |
292 | ERROR_PROBE("PCI DMA not supported.\n"); | 292 | ERROR_PROBE("PCI DMA not supported.\n"); |
293 | retval = -EIO; | 293 | retval = -EIO; |
294 | goto exit_disable_device; | 294 | goto exit_disable_device; |
diff --git a/drivers/pci/intel-iommu.c b/drivers/pci/intel-iommu.c index 09dc98b84553..fb3a3f3fca7a 100644 --- a/drivers/pci/intel-iommu.c +++ b/drivers/pci/intel-iommu.c | |||
@@ -56,7 +56,7 @@ | |||
56 | #define DOMAIN_MAX_ADDR(gaw) ((((u64)1) << gaw) - 1) | 56 | #define DOMAIN_MAX_ADDR(gaw) ((((u64)1) << gaw) - 1) |
57 | 57 | ||
58 | #define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT) | 58 | #define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT) |
59 | #define DMA_32BIT_PFN IOVA_PFN(DMA_32BIT_MASK) | 59 | #define DMA_32BIT_PFN IOVA_PFN(DMA_BIT_MASK(32)) |
60 | #define DMA_64BIT_PFN IOVA_PFN(DMA_BIT_MASK(64)) | 60 | #define DMA_64BIT_PFN IOVA_PFN(DMA_BIT_MASK(64)) |
61 | 61 | ||
62 | /* global iommu list, set NULL for ignored DMAR units */ | 62 | /* global iommu list, set NULL for ignored DMAR units */ |
@@ -2080,15 +2080,15 @@ __intel_alloc_iova(struct device *dev, struct dmar_domain *domain, | |||
2080 | struct pci_dev *pdev = to_pci_dev(dev); | 2080 | struct pci_dev *pdev = to_pci_dev(dev); |
2081 | struct iova *iova = NULL; | 2081 | struct iova *iova = NULL; |
2082 | 2082 | ||
2083 | if (dma_mask <= DMA_32BIT_MASK || dmar_forcedac) | 2083 | if (dma_mask <= DMA_BIT_MASK(32) || dmar_forcedac) |
2084 | iova = iommu_alloc_iova(domain, size, dma_mask); | 2084 | iova = iommu_alloc_iova(domain, size, dma_mask); |
2085 | else { | 2085 | else { |
2086 | /* | 2086 | /* |
2087 | * First try to allocate an io virtual address in | 2087 | * First try to allocate an io virtual address in |
2088 | * DMA_32BIT_MASK and if that fails then try allocating | 2088 | * DMA_BIT_MASK(32) and if that fails then try allocating |
2089 | * from higher range | 2089 | * from higher range |
2090 | */ | 2090 | */ |
2091 | iova = iommu_alloc_iova(domain, size, DMA_32BIT_MASK); | 2091 | iova = iommu_alloc_iova(domain, size, DMA_BIT_MASK(32)); |
2092 | if (!iova) | 2092 | if (!iova) |
2093 | iova = iommu_alloc_iova(domain, size, dma_mask); | 2093 | iova = iommu_alloc_iova(domain, size, dma_mask); |
2094 | } | 2094 | } |
diff --git a/drivers/rapidio/rio-scan.c b/drivers/rapidio/rio-scan.c index 5c13f61bfb1b..74d0bfa3f310 100644 --- a/drivers/rapidio/rio-scan.c +++ b/drivers/rapidio/rio-scan.c | |||
@@ -381,9 +381,9 @@ static struct rio_dev *rio_setup_device(struct rio_net *net, | |||
381 | rdev->dev.release = rio_release_dev; | 381 | rdev->dev.release = rio_release_dev; |
382 | rio_dev_get(rdev); | 382 | rio_dev_get(rdev); |
383 | 383 | ||
384 | rdev->dma_mask = DMA_32BIT_MASK; | 384 | rdev->dma_mask = DMA_BIT_MASK(32); |
385 | rdev->dev.dma_mask = &rdev->dma_mask; | 385 | rdev->dev.dma_mask = &rdev->dma_mask; |
386 | rdev->dev.coherent_dma_mask = DMA_32BIT_MASK; | 386 | rdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); |
387 | 387 | ||
388 | if ((rdev->pef & RIO_PEF_INB_DOORBELL) && | 388 | if ((rdev->pef & RIO_PEF_INB_DOORBELL) && |
389 | (rdev->dst_ops & RIO_DST_OPS_DOORBELL)) | 389 | (rdev->dst_ops & RIO_DST_OPS_DOORBELL)) |
diff --git a/drivers/scsi/3w-9xxx.c b/drivers/scsi/3w-9xxx.c index 6697652740b8..fdb14ec4fd47 100644 --- a/drivers/scsi/3w-9xxx.c +++ b/drivers/scsi/3w-9xxx.c | |||
@@ -2018,8 +2018,8 @@ static int __devinit twa_probe(struct pci_dev *pdev, const struct pci_device_id | |||
2018 | 2018 | ||
2019 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) | 2019 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) |
2020 | || pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) | 2020 | || pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) |
2021 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) | 2021 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) |
2022 | || pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK)) { | 2022 | || pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32))) { |
2023 | TW_PRINTK(host, TW_DRIVER, 0x23, "Failed to set dma mask"); | 2023 | TW_PRINTK(host, TW_DRIVER, 0x23, "Failed to set dma mask"); |
2024 | retval = -ENODEV; | 2024 | retval = -ENODEV; |
2025 | goto out_disable_device; | 2025 | goto out_disable_device; |
diff --git a/drivers/scsi/3w-xxxx.h b/drivers/scsi/3w-xxxx.h index 0742e6846656..8e71e5e122b3 100644 --- a/drivers/scsi/3w-xxxx.h +++ b/drivers/scsi/3w-xxxx.h | |||
@@ -234,7 +234,7 @@ static unsigned char tw_sense_table[][4] = | |||
234 | #define TW_IOCTL_TIMEOUT 25 /* 25 seconds */ | 234 | #define TW_IOCTL_TIMEOUT 25 /* 25 seconds */ |
235 | #define TW_IOCTL_CHRDEV_TIMEOUT 60 /* 60 seconds */ | 235 | #define TW_IOCTL_CHRDEV_TIMEOUT 60 /* 60 seconds */ |
236 | #define TW_IOCTL_CHRDEV_FREE -1 | 236 | #define TW_IOCTL_CHRDEV_FREE -1 |
237 | #define TW_DMA_MASK DMA_32BIT_MASK | 237 | #define TW_DMA_MASK DMA_BIT_MASK(32) |
238 | #define TW_MAX_CDB_LEN 16 | 238 | #define TW_MAX_CDB_LEN 16 |
239 | 239 | ||
240 | /* Bitmask macros to eliminate bitfields */ | 240 | /* Bitmask macros to eliminate bitfields */ |
diff --git a/drivers/scsi/BusLogic.c b/drivers/scsi/BusLogic.c index 2d689af24664..1ddcf4031d4c 100644 --- a/drivers/scsi/BusLogic.c +++ b/drivers/scsi/BusLogic.c | |||
@@ -667,7 +667,7 @@ static int __init BusLogic_InitializeMultiMasterProbeInfo(struct BusLogic_HostAd | |||
667 | if (pci_enable_device(PCI_Device)) | 667 | if (pci_enable_device(PCI_Device)) |
668 | continue; | 668 | continue; |
669 | 669 | ||
670 | if (pci_set_dma_mask(PCI_Device, DMA_32BIT_MASK )) | 670 | if (pci_set_dma_mask(PCI_Device, DMA_BIT_MASK(32) )) |
671 | continue; | 671 | continue; |
672 | 672 | ||
673 | Bus = PCI_Device->bus->number; | 673 | Bus = PCI_Device->bus->number; |
@@ -834,7 +834,7 @@ static int __init BusLogic_InitializeMultiMasterProbeInfo(struct BusLogic_HostAd | |||
834 | if (pci_enable_device(PCI_Device)) | 834 | if (pci_enable_device(PCI_Device)) |
835 | continue; | 835 | continue; |
836 | 836 | ||
837 | if (pci_set_dma_mask(PCI_Device, DMA_32BIT_MASK)) | 837 | if (pci_set_dma_mask(PCI_Device, DMA_BIT_MASK(32))) |
838 | continue; | 838 | continue; |
839 | 839 | ||
840 | Bus = PCI_Device->bus->number; | 840 | Bus = PCI_Device->bus->number; |
@@ -888,7 +888,7 @@ static int __init BusLogic_InitializeFlashPointProbeInfo(struct BusLogic_HostAda | |||
888 | if (pci_enable_device(PCI_Device)) | 888 | if (pci_enable_device(PCI_Device)) |
889 | continue; | 889 | continue; |
890 | 890 | ||
891 | if (pci_set_dma_mask(PCI_Device, DMA_32BIT_MASK)) | 891 | if (pci_set_dma_mask(PCI_Device, DMA_BIT_MASK(32))) |
892 | continue; | 892 | continue; |
893 | 893 | ||
894 | Bus = PCI_Device->bus->number; | 894 | Bus = PCI_Device->bus->number; |
diff --git a/drivers/scsi/a100u2w.c b/drivers/scsi/a100u2w.c index 964769f66eac..208d6df9ed59 100644 --- a/drivers/scsi/a100u2w.c +++ b/drivers/scsi/a100u2w.c | |||
@@ -1094,7 +1094,7 @@ static int __devinit inia100_probe_one(struct pci_dev *pdev, | |||
1094 | 1094 | ||
1095 | if (pci_enable_device(pdev)) | 1095 | if (pci_enable_device(pdev)) |
1096 | goto out; | 1096 | goto out; |
1097 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 1097 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
1098 | printk(KERN_WARNING "Unable to set 32bit DMA " | 1098 | printk(KERN_WARNING "Unable to set 32bit DMA " |
1099 | "on inia100 adapter, ignoring.\n"); | 1099 | "on inia100 adapter, ignoring.\n"); |
1100 | goto out_disable_device; | 1100 | goto out_disable_device; |
diff --git a/drivers/scsi/aacraid/aachba.c b/drivers/scsi/aacraid/aachba.c index e83ef8aaa98c..280261c451d6 100644 --- a/drivers/scsi/aacraid/aachba.c +++ b/drivers/scsi/aacraid/aachba.c | |||
@@ -1407,8 +1407,8 @@ int aac_get_adapter_info(struct aac_dev* dev) | |||
1407 | if (!dev->in_reset) | 1407 | if (!dev->in_reset) |
1408 | printk(KERN_INFO"%s%d: 64 Bit DAC enabled\n", | 1408 | printk(KERN_INFO"%s%d: 64 Bit DAC enabled\n", |
1409 | dev->name, dev->id); | 1409 | dev->name, dev->id); |
1410 | } else if (!pci_set_dma_mask(dev->pdev, DMA_32BIT_MASK) && | 1410 | } else if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(32)) && |
1411 | !pci_set_consistent_dma_mask(dev->pdev, DMA_32BIT_MASK)) { | 1411 | !pci_set_consistent_dma_mask(dev->pdev, DMA_BIT_MASK(32))) { |
1412 | printk(KERN_INFO"%s%d: DMA mask set failed, 64 Bit DAC disabled\n", | 1412 | printk(KERN_INFO"%s%d: DMA mask set failed, 64 Bit DAC disabled\n", |
1413 | dev->name, dev->id); | 1413 | dev->name, dev->id); |
1414 | dev->dac_support = 0; | 1414 | dev->dac_support = 0; |
diff --git a/drivers/scsi/aacraid/commsup.c b/drivers/scsi/aacraid/commsup.c index d24c2670040b..3b69c2d98dd6 100644 --- a/drivers/scsi/aacraid/commsup.c +++ b/drivers/scsi/aacraid/commsup.c | |||
@@ -1210,14 +1210,14 @@ static int _aac_reset_adapter(struct aac_dev *aac, int forced) | |||
1210 | ((retval = pci_set_consistent_dma_mask(aac->pdev, DMA_31BIT_MASK)))) | 1210 | ((retval = pci_set_consistent_dma_mask(aac->pdev, DMA_31BIT_MASK)))) |
1211 | goto out; | 1211 | goto out; |
1212 | } else { | 1212 | } else { |
1213 | if (((retval = pci_set_dma_mask(aac->pdev, DMA_32BIT_MASK))) || | 1213 | if (((retval = pci_set_dma_mask(aac->pdev, DMA_BIT_MASK(32)))) || |
1214 | ((retval = pci_set_consistent_dma_mask(aac->pdev, DMA_32BIT_MASK)))) | 1214 | ((retval = pci_set_consistent_dma_mask(aac->pdev, DMA_BIT_MASK(32))))) |
1215 | goto out; | 1215 | goto out; |
1216 | } | 1216 | } |
1217 | if ((retval = (*(aac_get_driver_ident(index)->init))(aac))) | 1217 | if ((retval = (*(aac_get_driver_ident(index)->init))(aac))) |
1218 | goto out; | 1218 | goto out; |
1219 | if (quirks & AAC_QUIRK_31BIT) | 1219 | if (quirks & AAC_QUIRK_31BIT) |
1220 | if ((retval = pci_set_dma_mask(aac->pdev, DMA_32BIT_MASK))) | 1220 | if ((retval = pci_set_dma_mask(aac->pdev, DMA_BIT_MASK(32)))) |
1221 | goto out; | 1221 | goto out; |
1222 | if (jafo) { | 1222 | if (jafo) { |
1223 | aac->thread = kthread_run(aac_command_thread, aac, aac->name); | 1223 | aac->thread = kthread_run(aac_command_thread, aac, aac->name); |
diff --git a/drivers/scsi/aacraid/linit.c b/drivers/scsi/aacraid/linit.c index c507719c0d44..3c3ed4b3311a 100644 --- a/drivers/scsi/aacraid/linit.c +++ b/drivers/scsi/aacraid/linit.c | |||
@@ -1095,8 +1095,8 @@ static int __devinit aac_probe_one(struct pci_dev *pdev, | |||
1095 | goto out; | 1095 | goto out; |
1096 | error = -ENODEV; | 1096 | error = -ENODEV; |
1097 | 1097 | ||
1098 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) || | 1098 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) || |
1099 | pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK)) | 1099 | pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32))) |
1100 | goto out_disable_pdev; | 1100 | goto out_disable_pdev; |
1101 | /* | 1101 | /* |
1102 | * If the quirk31 bit is set, the adapter needs adapter | 1102 | * If the quirk31 bit is set, the adapter needs adapter |
@@ -1154,7 +1154,7 @@ static int __devinit aac_probe_one(struct pci_dev *pdev, | |||
1154 | * address space. | 1154 | * address space. |
1155 | */ | 1155 | */ |
1156 | if (aac_drivers[index].quirks & AAC_QUIRK_31BIT) | 1156 | if (aac_drivers[index].quirks & AAC_QUIRK_31BIT) |
1157 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) | 1157 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) |
1158 | goto out_deinit; | 1158 | goto out_deinit; |
1159 | 1159 | ||
1160 | aac->maximum_num_channels = aac_drivers[index].channels; | 1160 | aac->maximum_num_channels = aac_drivers[index].channels; |
diff --git a/drivers/scsi/aic7xxx/aic79xx_osm_pci.c b/drivers/scsi/aic7xxx/aic79xx_osm_pci.c index c583d89f569a..8f686122d54e 100644 --- a/drivers/scsi/aic7xxx/aic79xx_osm_pci.c +++ b/drivers/scsi/aic7xxx/aic79xx_osm_pci.c | |||
@@ -197,13 +197,13 @@ ahd_linux_pci_dev_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
197 | if (required_mask > DMA_BIT_MASK(39) && | 197 | if (required_mask > DMA_BIT_MASK(39) && |
198 | dma_set_mask(dev, DMA_BIT_MASK(64)) == 0) | 198 | dma_set_mask(dev, DMA_BIT_MASK(64)) == 0) |
199 | ahd->flags |= AHD_64BIT_ADDRESSING; | 199 | ahd->flags |= AHD_64BIT_ADDRESSING; |
200 | else if (required_mask > DMA_32BIT_MASK && | 200 | else if (required_mask > DMA_BIT_MASK(32) && |
201 | dma_set_mask(dev, DMA_BIT_MASK(39)) == 0) | 201 | dma_set_mask(dev, DMA_BIT_MASK(39)) == 0) |
202 | ahd->flags |= AHD_39BIT_ADDRESSING; | 202 | ahd->flags |= AHD_39BIT_ADDRESSING; |
203 | else | 203 | else |
204 | dma_set_mask(dev, DMA_32BIT_MASK); | 204 | dma_set_mask(dev, DMA_BIT_MASK(32)); |
205 | } else { | 205 | } else { |
206 | dma_set_mask(dev, DMA_32BIT_MASK); | 206 | dma_set_mask(dev, DMA_BIT_MASK(32)); |
207 | } | 207 | } |
208 | ahd->dev_softc = pci; | 208 | ahd->dev_softc = pci; |
209 | error = ahd_pci_config(ahd, entry); | 209 | error = ahd_pci_config(ahd, entry); |
diff --git a/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c b/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c index 00f5b9868574..78fc70c24e07 100644 --- a/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c +++ b/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c | |||
@@ -241,10 +241,10 @@ ahc_linux_pci_dev_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
241 | if (sizeof(dma_addr_t) > 4 | 241 | if (sizeof(dma_addr_t) > 4 |
242 | && ahc->features & AHC_LARGE_SCBS | 242 | && ahc->features & AHC_LARGE_SCBS |
243 | && dma_set_mask(dev, mask_39bit) == 0 | 243 | && dma_set_mask(dev, mask_39bit) == 0 |
244 | && dma_get_required_mask(dev) > DMA_32BIT_MASK) { | 244 | && dma_get_required_mask(dev) > DMA_BIT_MASK(32)) { |
245 | ahc->flags |= AHC_39BIT_ADDRESSING; | 245 | ahc->flags |= AHC_39BIT_ADDRESSING; |
246 | } else { | 246 | } else { |
247 | if (dma_set_mask(dev, DMA_32BIT_MASK)) { | 247 | if (dma_set_mask(dev, DMA_BIT_MASK(32))) { |
248 | ahc_free(ahc); | 248 | ahc_free(ahc); |
249 | printk(KERN_WARNING "aic7xxx: No suitable DMA available.\n"); | 249 | printk(KERN_WARNING "aic7xxx: No suitable DMA available.\n"); |
250 | return (-ENODEV); | 250 | return (-ENODEV); |
diff --git a/drivers/scsi/aic94xx/aic94xx_init.c b/drivers/scsi/aic94xx/aic94xx_init.c index 7edbe4309c61..996f7224f90e 100644 --- a/drivers/scsi/aic94xx/aic94xx_init.c +++ b/drivers/scsi/aic94xx/aic94xx_init.c | |||
@@ -793,8 +793,8 @@ static int __devinit asd_pci_probe(struct pci_dev *dev, | |||
793 | if (!pci_set_dma_mask(dev, DMA_BIT_MASK(64)) | 793 | if (!pci_set_dma_mask(dev, DMA_BIT_MASK(64)) |
794 | && !pci_set_consistent_dma_mask(dev, DMA_BIT_MASK(64))) | 794 | && !pci_set_consistent_dma_mask(dev, DMA_BIT_MASK(64))) |
795 | ; | 795 | ; |
796 | else if (!pci_set_dma_mask(dev, DMA_32BIT_MASK) | 796 | else if (!pci_set_dma_mask(dev, DMA_BIT_MASK(32)) |
797 | && !pci_set_consistent_dma_mask(dev, DMA_32BIT_MASK)) | 797 | && !pci_set_consistent_dma_mask(dev, DMA_BIT_MASK(32))) |
798 | ; | 798 | ; |
799 | else { | 799 | else { |
800 | asd_printk("no suitable DMA mask for %s\n", pci_name(dev)); | 800 | asd_printk("no suitable DMA mask for %s\n", pci_name(dev)); |
diff --git a/drivers/scsi/arcmsr/arcmsr_hba.c b/drivers/scsi/arcmsr/arcmsr_hba.c index e95b72dd34b1..80aac01b5a6f 100644 --- a/drivers/scsi/arcmsr/arcmsr_hba.c +++ b/drivers/scsi/arcmsr/arcmsr_hba.c | |||
@@ -395,7 +395,7 @@ static int arcmsr_probe(struct pci_dev *pdev, | |||
395 | 395 | ||
396 | error = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); | 396 | error = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); |
397 | if (error) { | 397 | if (error) { |
398 | error = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 398 | error = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
399 | if (error) { | 399 | if (error) { |
400 | printk(KERN_WARNING | 400 | printk(KERN_WARNING |
401 | "scsi%d: No suitable DMA mask available\n", | 401 | "scsi%d: No suitable DMA mask available\n", |
diff --git a/drivers/scsi/atp870u.c b/drivers/scsi/atp870u.c index 20ca0a6374b5..b137e561f5bc 100644 --- a/drivers/scsi/atp870u.c +++ b/drivers/scsi/atp870u.c | |||
@@ -2568,7 +2568,7 @@ static int atp870u_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2568 | if (pci_enable_device(pdev)) | 2568 | if (pci_enable_device(pdev)) |
2569 | goto err_eio; | 2569 | goto err_eio; |
2570 | 2570 | ||
2571 | if (!pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 2571 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
2572 | printk(KERN_INFO "atp870u: use 32bit DMA mask.\n"); | 2572 | printk(KERN_INFO "atp870u: use 32bit DMA mask.\n"); |
2573 | } else { | 2573 | } else { |
2574 | printk(KERN_ERR "atp870u: DMA mask required but not available.\n"); | 2574 | printk(KERN_ERR "atp870u: DMA mask required but not available.\n"); |
diff --git a/drivers/scsi/dpt_i2o.c b/drivers/scsi/dpt_i2o.c index 75a94e438fa5..b6af63ca980b 100644 --- a/drivers/scsi/dpt_i2o.c +++ b/drivers/scsi/dpt_i2o.c | |||
@@ -1015,14 +1015,14 @@ static int adpt_install_hba(struct scsi_host_template* sht, struct pci_dev* pDev | |||
1015 | */ | 1015 | */ |
1016 | if (sizeof(dma_addr_t) > 4 && | 1016 | if (sizeof(dma_addr_t) > 4 && |
1017 | pci_set_dma_mask(pDev, DMA_BIT_MASK(64)) == 0) { | 1017 | pci_set_dma_mask(pDev, DMA_BIT_MASK(64)) == 0) { |
1018 | if (dma_get_required_mask(&pDev->dev) > DMA_32BIT_MASK) | 1018 | if (dma_get_required_mask(&pDev->dev) > DMA_BIT_MASK(32)) |
1019 | dma64 = 1; | 1019 | dma64 = 1; |
1020 | } | 1020 | } |
1021 | if (!dma64 && pci_set_dma_mask(pDev, DMA_32BIT_MASK) != 0) | 1021 | if (!dma64 && pci_set_dma_mask(pDev, DMA_BIT_MASK(32)) != 0) |
1022 | return -EINVAL; | 1022 | return -EINVAL; |
1023 | 1023 | ||
1024 | /* adapter only supports message blocks below 4GB */ | 1024 | /* adapter only supports message blocks below 4GB */ |
1025 | pci_set_consistent_dma_mask(pDev, DMA_32BIT_MASK); | 1025 | pci_set_consistent_dma_mask(pDev, DMA_BIT_MASK(32)); |
1026 | 1026 | ||
1027 | base_addr0_phys = pci_resource_start(pDev,0); | 1027 | base_addr0_phys = pci_resource_start(pDev,0); |
1028 | hba_map0_area_size = pci_resource_len(pDev,0); | 1028 | hba_map0_area_size = pci_resource_len(pDev,0); |
diff --git a/drivers/scsi/eata.c b/drivers/scsi/eata.c index 976cdd5c94ef..be5099dd94b5 100644 --- a/drivers/scsi/eata.c +++ b/drivers/scsi/eata.c | |||
@@ -1426,7 +1426,7 @@ static int port_detect(unsigned long port_base, unsigned int j, | |||
1426 | 1426 | ||
1427 | if (ha->pdev) { | 1427 | if (ha->pdev) { |
1428 | pci_set_master(ha->pdev); | 1428 | pci_set_master(ha->pdev); |
1429 | if (pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK)) | 1429 | if (pci_set_dma_mask(ha->pdev, DMA_BIT_MASK(32))) |
1430 | printk("%s: warning, pci_set_dma_mask failed.\n", | 1430 | printk("%s: warning, pci_set_dma_mask failed.\n", |
1431 | ha->board_name); | 1431 | ha->board_name); |
1432 | } | 1432 | } |
diff --git a/drivers/scsi/gdth.c b/drivers/scsi/gdth.c index 4982344f1f09..185e6bc4dd40 100644 --- a/drivers/scsi/gdth.c +++ b/drivers/scsi/gdth.c | |||
@@ -5023,7 +5023,7 @@ static int __devinit gdth_pci_probe_one(gdth_pci_str *pcistr, | |||
5023 | /* 64-bit DMA only supported from FW >= x.43 */ | 5023 | /* 64-bit DMA only supported from FW >= x.43 */ |
5024 | if (!(ha->cache_feat & ha->raw_feat & ha->screen_feat & GDT_64BIT) || | 5024 | if (!(ha->cache_feat & ha->raw_feat & ha->screen_feat & GDT_64BIT) || |
5025 | !ha->dma64_support) { | 5025 | !ha->dma64_support) { |
5026 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 5026 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
5027 | printk(KERN_WARNING "GDT-PCI %d: " | 5027 | printk(KERN_WARNING "GDT-PCI %d: " |
5028 | "Unable to set 32-bit DMA\n", ha->hanum); | 5028 | "Unable to set 32-bit DMA\n", ha->hanum); |
5029 | goto out_free_coal_stat; | 5029 | goto out_free_coal_stat; |
@@ -5032,7 +5032,7 @@ static int __devinit gdth_pci_probe_one(gdth_pci_str *pcistr, | |||
5032 | shp->max_cmd_len = 16; | 5032 | shp->max_cmd_len = 16; |
5033 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 5033 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
5034 | printk("GDT-PCI %d: 64-bit DMA enabled\n", ha->hanum); | 5034 | printk("GDT-PCI %d: 64-bit DMA enabled\n", ha->hanum); |
5035 | } else if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 5035 | } else if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
5036 | printk(KERN_WARNING "GDT-PCI %d: " | 5036 | printk(KERN_WARNING "GDT-PCI %d: " |
5037 | "Unable to set 64/32-bit DMA\n", ha->hanum); | 5037 | "Unable to set 64/32-bit DMA\n", ha->hanum); |
5038 | goto out_free_coal_stat; | 5038 | goto out_free_coal_stat; |
diff --git a/drivers/scsi/hptiop.c b/drivers/scsi/hptiop.c index a13d78150cb5..c596ab5f05c3 100644 --- a/drivers/scsi/hptiop.c +++ b/drivers/scsi/hptiop.c | |||
@@ -959,7 +959,7 @@ static int __devinit hptiop_probe(struct pci_dev *pcidev, | |||
959 | 959 | ||
960 | /* Enable 64bit DMA if possible */ | 960 | /* Enable 64bit DMA if possible */ |
961 | if (pci_set_dma_mask(pcidev, DMA_BIT_MASK(64))) { | 961 | if (pci_set_dma_mask(pcidev, DMA_BIT_MASK(64))) { |
962 | if (pci_set_dma_mask(pcidev, DMA_32BIT_MASK)) { | 962 | if (pci_set_dma_mask(pcidev, DMA_BIT_MASK(32))) { |
963 | printk(KERN_ERR "hptiop: fail to set dma_mask\n"); | 963 | printk(KERN_ERR "hptiop: fail to set dma_mask\n"); |
964 | goto disable_pci_device; | 964 | goto disable_pci_device; |
965 | } | 965 | } |
diff --git a/drivers/scsi/initio.c b/drivers/scsi/initio.c index 5529518ff2fa..89a59484be02 100644 --- a/drivers/scsi/initio.c +++ b/drivers/scsi/initio.c | |||
@@ -2856,7 +2856,7 @@ static int initio_probe_one(struct pci_dev *pdev, | |||
2856 | reg = 0; | 2856 | reg = 0; |
2857 | bios_seg = (bios_seg << 8) + ((u16) ((reg & 0xFF00) >> 8)); | 2857 | bios_seg = (bios_seg << 8) + ((u16) ((reg & 0xFF00) >> 8)); |
2858 | 2858 | ||
2859 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 2859 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
2860 | printk(KERN_WARNING "i91u: Could not set 32 bit DMA mask\n"); | 2860 | printk(KERN_WARNING "i91u: Could not set 32 bit DMA mask\n"); |
2861 | error = -ENODEV; | 2861 | error = -ENODEV; |
2862 | goto out_disable_device; | 2862 | goto out_disable_device; |
diff --git a/drivers/scsi/ipr.c b/drivers/scsi/ipr.c index def473f0a98f..c09d77591f92 100644 --- a/drivers/scsi/ipr.c +++ b/drivers/scsi/ipr.c | |||
@@ -7498,7 +7498,7 @@ static int __devinit ipr_probe_ioa(struct pci_dev *pdev, | |||
7498 | 7498 | ||
7499 | pci_set_master(pdev); | 7499 | pci_set_master(pdev); |
7500 | 7500 | ||
7501 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 7501 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
7502 | if (rc < 0) { | 7502 | if (rc < 0) { |
7503 | dev_err(&pdev->dev, "Failed to set PCI DMA mask\n"); | 7503 | dev_err(&pdev->dev, "Failed to set PCI DMA mask\n"); |
7504 | goto cleanup_nomem; | 7504 | goto cleanup_nomem; |
diff --git a/drivers/scsi/ips.c b/drivers/scsi/ips.c index 45296a975f8b..f83a116955f2 100644 --- a/drivers/scsi/ips.c +++ b/drivers/scsi/ips.c | |||
@@ -7051,7 +7051,7 @@ ips_init_phase1(struct pci_dev *pci_dev, int *indexPtr) | |||
7051 | !pci_set_dma_mask(ha->pcidev, DMA_BIT_MASK(64))) { | 7051 | !pci_set_dma_mask(ha->pcidev, DMA_BIT_MASK(64))) { |
7052 | (ha)->flags |= IPS_HA_ENH_SG; | 7052 | (ha)->flags |= IPS_HA_ENH_SG; |
7053 | } else { | 7053 | } else { |
7054 | if (pci_set_dma_mask(ha->pcidev, DMA_32BIT_MASK) != 0) { | 7054 | if (pci_set_dma_mask(ha->pcidev, DMA_BIT_MASK(32)) != 0) { |
7055 | printk(KERN_WARNING "Unable to set DMA Mask\n"); | 7055 | printk(KERN_WARNING "Unable to set DMA Mask\n"); |
7056 | return ips_abort_init(ha, index); | 7056 | return ips_abort_init(ha, index); |
7057 | } | 7057 | } |
diff --git a/drivers/scsi/lasi700.c b/drivers/scsi/lasi700.c index f23c4ca9a2ee..b3d31315ac32 100644 --- a/drivers/scsi/lasi700.c +++ b/drivers/scsi/lasi700.c | |||
@@ -108,7 +108,7 @@ lasi700_probe(struct parisc_device *dev) | |||
108 | } | 108 | } |
109 | 109 | ||
110 | hostdata->dev = &dev->dev; | 110 | hostdata->dev = &dev->dev; |
111 | dma_set_mask(&dev->dev, DMA_32BIT_MASK); | 111 | dma_set_mask(&dev->dev, DMA_BIT_MASK(32)); |
112 | hostdata->base = ioremap_nocache(base, 0x100); | 112 | hostdata->base = ioremap_nocache(base, 0x100); |
113 | hostdata->differential = 0; | 113 | hostdata->differential = 0; |
114 | 114 | ||
diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c index c255b4d94b1b..06874e6009ea 100644 --- a/drivers/scsi/lpfc/lpfc_init.c +++ b/drivers/scsi/lpfc/lpfc_init.c | |||
@@ -2661,7 +2661,7 @@ lpfc_pci_probe_one(struct pci_dev *pdev, const struct pci_device_id *pid) | |||
2661 | pci_try_set_mwi(pdev); | 2661 | pci_try_set_mwi(pdev); |
2662 | 2662 | ||
2663 | if (pci_set_dma_mask(phba->pcidev, DMA_BIT_MASK(64)) != 0) | 2663 | if (pci_set_dma_mask(phba->pcidev, DMA_BIT_MASK(64)) != 0) |
2664 | if (pci_set_dma_mask(phba->pcidev, DMA_32BIT_MASK) != 0) | 2664 | if (pci_set_dma_mask(phba->pcidev, DMA_BIT_MASK(32)) != 0) |
2665 | goto out_idr_remove; | 2665 | goto out_idr_remove; |
2666 | 2666 | ||
2667 | /* | 2667 | /* |
diff --git a/drivers/scsi/megaraid.c b/drivers/scsi/megaraid.c index 112991d46d95..49eb0612d5af 100644 --- a/drivers/scsi/megaraid.c +++ b/drivers/scsi/megaraid.c | |||
@@ -2021,7 +2021,7 @@ make_local_pdev(adapter_t *adapter, struct pci_dev **pdev) | |||
2021 | 2021 | ||
2022 | memcpy(*pdev, adapter->dev, sizeof(struct pci_dev)); | 2022 | memcpy(*pdev, adapter->dev, sizeof(struct pci_dev)); |
2023 | 2023 | ||
2024 | if( pci_set_dma_mask(*pdev, DMA_32BIT_MASK) != 0 ) { | 2024 | if( pci_set_dma_mask(*pdev, DMA_BIT_MASK(32)) != 0 ) { |
2025 | kfree(*pdev); | 2025 | kfree(*pdev); |
2026 | return -1; | 2026 | return -1; |
2027 | } | 2027 | } |
@@ -4796,7 +4796,7 @@ megaraid_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
4796 | pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); | 4796 | pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); |
4797 | adapter->has_64bit_addr = 1; | 4797 | adapter->has_64bit_addr = 1; |
4798 | } else { | 4798 | } else { |
4799 | pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 4799 | pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
4800 | adapter->has_64bit_addr = 0; | 4800 | adapter->has_64bit_addr = 0; |
4801 | } | 4801 | } |
4802 | 4802 | ||
diff --git a/drivers/scsi/megaraid/megaraid_mbox.c b/drivers/scsi/megaraid/megaraid_mbox.c index b2c19449119d..234f0b7eb21c 100644 --- a/drivers/scsi/megaraid/megaraid_mbox.c +++ b/drivers/scsi/megaraid/megaraid_mbox.c | |||
@@ -473,7 +473,7 @@ megaraid_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
473 | 473 | ||
474 | // Setup the default DMA mask. This would be changed later on | 474 | // Setup the default DMA mask. This would be changed later on |
475 | // depending on hardware capabilities | 475 | // depending on hardware capabilities |
476 | if (pci_set_dma_mask(adapter->pdev, DMA_32BIT_MASK) != 0) { | 476 | if (pci_set_dma_mask(adapter->pdev, DMA_BIT_MASK(32)) != 0) { |
477 | 477 | ||
478 | con_log(CL_ANN, (KERN_WARNING | 478 | con_log(CL_ANN, (KERN_WARNING |
479 | "megaraid: pci_set_dma_mask failed:%d\n", __LINE__)); | 479 | "megaraid: pci_set_dma_mask failed:%d\n", __LINE__)); |
@@ -904,7 +904,7 @@ megaraid_init_mbox(adapter_t *adapter) | |||
904 | con_log(CL_ANN, (KERN_WARNING | 904 | con_log(CL_ANN, (KERN_WARNING |
905 | "megaraid: DMA mask for 64-bit failed\n")); | 905 | "megaraid: DMA mask for 64-bit failed\n")); |
906 | 906 | ||
907 | if (pci_set_dma_mask (adapter->pdev, DMA_32BIT_MASK)) { | 907 | if (pci_set_dma_mask (adapter->pdev, DMA_BIT_MASK(32))) { |
908 | con_log(CL_ANN, (KERN_WARNING | 908 | con_log(CL_ANN, (KERN_WARNING |
909 | "megaraid: 32-bit DMA mask failed\n")); | 909 | "megaraid: 32-bit DMA mask failed\n")); |
910 | goto out_free_sysfs_res; | 910 | goto out_free_sysfs_res; |
diff --git a/drivers/scsi/megaraid/megaraid_sas.c b/drivers/scsi/megaraid/megaraid_sas.c index 713de85771f3..7dc3d1894b1a 100644 --- a/drivers/scsi/megaraid/megaraid_sas.c +++ b/drivers/scsi/megaraid/megaraid_sas.c | |||
@@ -2499,11 +2499,11 @@ megasas_set_dma_mask(struct pci_dev *pdev) | |||
2499 | if (IS_DMA64) { | 2499 | if (IS_DMA64) { |
2500 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) { | 2500 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) { |
2501 | 2501 | ||
2502 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) != 0) | 2502 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) |
2503 | goto fail_set_dma_mask; | 2503 | goto fail_set_dma_mask; |
2504 | } | 2504 | } |
2505 | } else { | 2505 | } else { |
2506 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) != 0) | 2506 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) |
2507 | goto fail_set_dma_mask; | 2507 | goto fail_set_dma_mask; |
2508 | } | 2508 | } |
2509 | return 0; | 2509 | return 0; |
diff --git a/drivers/scsi/mvsas.c b/drivers/scsi/mvsas.c index d8093a288438..e4acebd10d1b 100644 --- a/drivers/scsi/mvsas.c +++ b/drivers/scsi/mvsas.c | |||
@@ -878,7 +878,7 @@ static int pci_go_64(struct pci_dev *pdev) | |||
878 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { | 878 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
879 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); | 879 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
880 | if (rc) { | 880 | if (rc) { |
881 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 881 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
882 | if (rc) { | 882 | if (rc) { |
883 | dev_printk(KERN_ERR, &pdev->dev, | 883 | dev_printk(KERN_ERR, &pdev->dev, |
884 | "64-bit DMA enable failed\n"); | 884 | "64-bit DMA enable failed\n"); |
@@ -886,13 +886,13 @@ static int pci_go_64(struct pci_dev *pdev) | |||
886 | } | 886 | } |
887 | } | 887 | } |
888 | } else { | 888 | } else { |
889 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 889 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
890 | if (rc) { | 890 | if (rc) { |
891 | dev_printk(KERN_ERR, &pdev->dev, | 891 | dev_printk(KERN_ERR, &pdev->dev, |
892 | "32-bit DMA enable failed\n"); | 892 | "32-bit DMA enable failed\n"); |
893 | return rc; | 893 | return rc; |
894 | } | 894 | } |
895 | rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 895 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
896 | if (rc) { | 896 | if (rc) { |
897 | dev_printk(KERN_ERR, &pdev->dev, | 897 | dev_printk(KERN_ERR, &pdev->dev, |
898 | "32-bit consistent DMA enable failed\n"); | 898 | "32-bit consistent DMA enable failed\n"); |
diff --git a/drivers/scsi/nsp32.c b/drivers/scsi/nsp32.c index d06ec5aa6924..2be7d5b018d2 100644 --- a/drivers/scsi/nsp32.c +++ b/drivers/scsi/nsp32.c | |||
@@ -2672,7 +2672,7 @@ static int nsp32_detect(struct pci_dev *pdev) | |||
2672 | /* | 2672 | /* |
2673 | * setup DMA | 2673 | * setup DMA |
2674 | */ | 2674 | */ |
2675 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) != 0) { | 2675 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) { |
2676 | nsp32_msg (KERN_ERR, "failed to set PCI DMA mask"); | 2676 | nsp32_msg (KERN_ERR, "failed to set PCI DMA mask"); |
2677 | goto scsi_unregister; | 2677 | goto scsi_unregister; |
2678 | } | 2678 | } |
diff --git a/drivers/scsi/qla1280.c b/drivers/scsi/qla1280.c index 18f7f98ba571..687dcf2d0154 100644 --- a/drivers/scsi/qla1280.c +++ b/drivers/scsi/qla1280.c | |||
@@ -4276,7 +4276,7 @@ qla1280_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
4276 | 4276 | ||
4277 | #ifdef QLA_64BIT_PTR | 4277 | #ifdef QLA_64BIT_PTR |
4278 | if (pci_set_dma_mask(ha->pdev, DMA_BIT_MASK(64))) { | 4278 | if (pci_set_dma_mask(ha->pdev, DMA_BIT_MASK(64))) { |
4279 | if (pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK)) { | 4279 | if (pci_set_dma_mask(ha->pdev, DMA_BIT_MASK(32))) { |
4280 | printk(KERN_WARNING "scsi(%li): Unable to set a " | 4280 | printk(KERN_WARNING "scsi(%li): Unable to set a " |
4281 | "suitable DMA mask - aborting\n", ha->host_no); | 4281 | "suitable DMA mask - aborting\n", ha->host_no); |
4282 | error = -ENODEV; | 4282 | error = -ENODEV; |
@@ -4286,7 +4286,7 @@ qla1280_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
4286 | dprintk(2, "scsi(%li): 64 Bit PCI Addressing Enabled\n", | 4286 | dprintk(2, "scsi(%li): 64 Bit PCI Addressing Enabled\n", |
4287 | ha->host_no); | 4287 | ha->host_no); |
4288 | #else | 4288 | #else |
4289 | if (pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK)) { | 4289 | if (pci_set_dma_mask(ha->pdev, DMA_BIT_MASK(32))) { |
4290 | printk(KERN_WARNING "scsi(%li): Unable to set a " | 4290 | printk(KERN_WARNING "scsi(%li): Unable to set a " |
4291 | "suitable DMA mask - aborting\n", ha->host_no); | 4291 | "suitable DMA mask - aborting\n", ha->host_no); |
4292 | error = -ENODEV; | 4292 | error = -ENODEV; |
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index f60e136b5e1b..e4fdcdad80d0 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c | |||
@@ -1188,8 +1188,8 @@ qla2x00_config_dma_addressing(struct qla_hw_data *ha) | |||
1188 | } | 1188 | } |
1189 | } | 1189 | } |
1190 | 1190 | ||
1191 | dma_set_mask(&ha->pdev->dev, DMA_32BIT_MASK); | 1191 | dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32)); |
1192 | pci_set_consistent_dma_mask(ha->pdev, DMA_32BIT_MASK); | 1192 | pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(32)); |
1193 | } | 1193 | } |
1194 | 1194 | ||
1195 | static void | 1195 | static void |
diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c index d427fab7a183..ec9da6ce8489 100644 --- a/drivers/scsi/qla4xxx/ql4_os.c +++ b/drivers/scsi/qla4xxx/ql4_os.c | |||
@@ -1375,10 +1375,10 @@ static void qla4xxx_config_dma_addressing(struct scsi_qla_host *ha) | |||
1375 | "Failed to set 64 bit PCI consistent mask; " | 1375 | "Failed to set 64 bit PCI consistent mask; " |
1376 | "using 32 bit.\n"); | 1376 | "using 32 bit.\n"); |
1377 | retval = pci_set_consistent_dma_mask(ha->pdev, | 1377 | retval = pci_set_consistent_dma_mask(ha->pdev, |
1378 | DMA_32BIT_MASK); | 1378 | DMA_BIT_MASK(32)); |
1379 | } | 1379 | } |
1380 | } else | 1380 | } else |
1381 | retval = pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK); | 1381 | retval = pci_set_dma_mask(ha->pdev, DMA_BIT_MASK(32)); |
1382 | } | 1382 | } |
1383 | 1383 | ||
1384 | static int qla4xxx_slave_alloc(struct scsi_device *sdev) | 1384 | static int qla4xxx_slave_alloc(struct scsi_device *sdev) |
diff --git a/drivers/scsi/sni_53c710.c b/drivers/scsi/sni_53c710.c index 77f0b2cdaa94..37b3359e863e 100644 --- a/drivers/scsi/sni_53c710.c +++ b/drivers/scsi/sni_53c710.c | |||
@@ -83,7 +83,7 @@ static int __init snirm710_probe(struct platform_device *dev) | |||
83 | } | 83 | } |
84 | 84 | ||
85 | hostdata->dev = &dev->dev; | 85 | hostdata->dev = &dev->dev; |
86 | dma_set_mask(&dev->dev, DMA_32BIT_MASK); | 86 | dma_set_mask(&dev->dev, DMA_BIT_MASK(32)); |
87 | hostdata->base = ioremap_nocache(base, 0x100); | 87 | hostdata->base = ioremap_nocache(base, 0x100); |
88 | hostdata->differential = 0; | 88 | hostdata->differential = 0; |
89 | 89 | ||
diff --git a/drivers/scsi/stex.c b/drivers/scsi/stex.c index 7cb8063c4355..8d2a95c4e5b5 100644 --- a/drivers/scsi/stex.c +++ b/drivers/scsi/stex.c | |||
@@ -1398,9 +1398,9 @@ static int stex_set_dma_mask(struct pci_dev * pdev) | |||
1398 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) | 1398 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) |
1399 | && !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) | 1399 | && !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) |
1400 | return 0; | 1400 | return 0; |
1401 | ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1401 | ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
1402 | if (!ret) | 1402 | if (!ret) |
1403 | ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | 1403 | ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
1404 | return ret; | 1404 | return ret; |
1405 | } | 1405 | } |
1406 | 1406 | ||
diff --git a/drivers/scsi/sym53c8xx_2/sym_glue.c b/drivers/scsi/sym53c8xx_2/sym_glue.c index 23e782015880..583966ec8266 100644 --- a/drivers/scsi/sym53c8xx_2/sym_glue.c +++ b/drivers/scsi/sym53c8xx_2/sym_glue.c | |||
@@ -1349,7 +1349,7 @@ static struct Scsi_Host * __devinit sym_attach(struct scsi_host_template *tpnt, | |||
1349 | if ((SYM_CONF_DMA_ADDRESSING_MODE > 0) && (np->features & FE_DAC) && | 1349 | if ((SYM_CONF_DMA_ADDRESSING_MODE > 0) && (np->features & FE_DAC) && |
1350 | !pci_set_dma_mask(pdev, DMA_DAC_MASK)) { | 1350 | !pci_set_dma_mask(pdev, DMA_DAC_MASK)) { |
1351 | set_dac(np); | 1351 | set_dac(np); |
1352 | } else if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | 1352 | } else if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) { |
1353 | printf_warning("%s: No suitable DMA available\n", sym_name(np)); | 1353 | printf_warning("%s: No suitable DMA available\n", sym_name(np)); |
1354 | goto attach_failed; | 1354 | goto attach_failed; |
1355 | } | 1355 | } |
diff --git a/drivers/scsi/sym53c8xx_2/sym_hipd.h b/drivers/scsi/sym53c8xx_2/sym_hipd.h index b707abe90821..9ebc8706b6bf 100644 --- a/drivers/scsi/sym53c8xx_2/sym_hipd.h +++ b/drivers/scsi/sym53c8xx_2/sym_hipd.h | |||
@@ -1080,7 +1080,7 @@ int sym_hcb_attach(struct Scsi_Host *shost, struct sym_fw *fw, struct sym_nvram | |||
1080 | */ | 1080 | */ |
1081 | 1081 | ||
1082 | #if SYM_CONF_DMA_ADDRESSING_MODE == 0 | 1082 | #if SYM_CONF_DMA_ADDRESSING_MODE == 0 |
1083 | #define DMA_DAC_MASK DMA_32BIT_MASK | 1083 | #define DMA_DAC_MASK DMA_BIT_MASK(32) |
1084 | #define sym_build_sge(np, data, badd, len) \ | 1084 | #define sym_build_sge(np, data, badd, len) \ |
1085 | do { \ | 1085 | do { \ |
1086 | (data)->addr = cpu_to_scr(badd); \ | 1086 | (data)->addr = cpu_to_scr(badd); \ |
diff --git a/drivers/staging/agnx/pci.c b/drivers/staging/agnx/pci.c index 4ff4c1601423..25c0ffd2faa0 100644 --- a/drivers/staging/agnx/pci.c +++ b/drivers/staging/agnx/pci.c | |||
@@ -477,8 +477,8 @@ static int __devinit agnx_pci_probe(struct pci_dev *pdev, | |||
477 | return err; | 477 | return err; |
478 | } | 478 | } |
479 | 479 | ||
480 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK) || | 480 | if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) || |
481 | pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK)) { | 481 | pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32))) { |
482 | printk(KERN_ERR PFX "No suitable DMA available\n"); | 482 | printk(KERN_ERR PFX "No suitable DMA available\n"); |
483 | goto err_free_reg; | 483 | goto err_free_reg; |
484 | } | 484 | } |
diff --git a/drivers/staging/altpciechdma/altpciechdma.c b/drivers/staging/altpciechdma/altpciechdma.c index 6a4d0b8e0960..5869e1484a95 100644 --- a/drivers/staging/altpciechdma/altpciechdma.c +++ b/drivers/staging/altpciechdma/altpciechdma.c | |||
@@ -855,9 +855,9 @@ static int __devinit probe(struct pci_dev *dev, const struct pci_device_id *id) | |||
855 | printk(KERN_DEBUG "Using a 64-bit DMA mask.\n"); | 855 | printk(KERN_DEBUG "Using a 64-bit DMA mask.\n"); |
856 | } else | 856 | } else |
857 | #endif | 857 | #endif |
858 | if (!pci_set_dma_mask(dev, DMA_32BIT_MASK)) { | 858 | if (!pci_set_dma_mask(dev, DMA_BIT_MASK(32))) { |
859 | printk(KERN_DEBUG "Could not set 64-bit DMA mask.\n"); | 859 | printk(KERN_DEBUG "Could not set 64-bit DMA mask.\n"); |
860 | pci_set_consistent_dma_mask(dev, DMA_32BIT_MASK); | 860 | pci_set_consistent_dma_mask(dev, DMA_BIT_MASK(32)); |
861 | /* use 32-bit DMA */ | 861 | /* use 32-bit DMA */ |
862 | printk(KERN_DEBUG "Using a 32-bit DMA mask.\n"); | 862 | printk(KERN_DEBUG "Using a 32-bit DMA mask.\n"); |
863 | } else { | 863 | } else { |
diff --git a/drivers/staging/sxg/sxg.c b/drivers/staging/sxg/sxg.c index a77e1eee5693..891f6e334672 100644 --- a/drivers/staging/sxg/sxg.c +++ b/drivers/staging/sxg/sxg.c | |||
@@ -937,13 +937,13 @@ static int sxg_entry_probe(struct pci_dev *pcidev, | |||
937 | if (!(err = pci_set_dma_mask(pcidev, DMA_BIT_MASK(64)))) { | 937 | if (!(err = pci_set_dma_mask(pcidev, DMA_BIT_MASK(64)))) { |
938 | DBG_ERROR("pci_set_dma_mask(DMA_BIT_MASK(64)) successful\n"); | 938 | DBG_ERROR("pci_set_dma_mask(DMA_BIT_MASK(64)) successful\n"); |
939 | } else { | 939 | } else { |
940 | if ((err = pci_set_dma_mask(pcidev, DMA_32BIT_MASK))) { | 940 | if ((err = pci_set_dma_mask(pcidev, DMA_BIT_MASK(32)))) { |
941 | DBG_ERROR | 941 | DBG_ERROR |
942 | ("No usable DMA configuration, aborting err[%x]\n", | 942 | ("No usable DMA configuration, aborting err[%x]\n", |
943 | err); | 943 | err); |
944 | return err; | 944 | return err; |
945 | } | 945 | } |
946 | DBG_ERROR("pci_set_dma_mask(DMA_32BIT_MASK) successful\n"); | 946 | DBG_ERROR("pci_set_dma_mask(DMA_BIT_MASK(32)) successful\n"); |
947 | } | 947 | } |
948 | 948 | ||
949 | DBG_ERROR("Call pci_request_regions\n"); | 949 | DBG_ERROR("Call pci_request_regions\n"); |
diff --git a/drivers/usb/host/ehci-ps3.c b/drivers/usb/host/ehci-ps3.c index 9c9da35abc6c..1ba9f9a8c308 100644 --- a/drivers/usb/host/ehci-ps3.c +++ b/drivers/usb/host/ehci-ps3.c | |||
@@ -81,7 +81,7 @@ static int ps3_ehci_probe(struct ps3_system_bus_device *dev) | |||
81 | int result; | 81 | int result; |
82 | struct usb_hcd *hcd; | 82 | struct usb_hcd *hcd; |
83 | unsigned int virq; | 83 | unsigned int virq; |
84 | static u64 dummy_mask = DMA_32BIT_MASK; | 84 | static u64 dummy_mask = DMA_BIT_MASK(32); |
85 | 85 | ||
86 | if (usb_disabled()) { | 86 | if (usb_disabled()) { |
87 | result = -ENODEV; | 87 | result = -ENODEV; |
diff --git a/drivers/usb/host/ohci-ps3.c b/drivers/usb/host/ohci-ps3.c index 3c1a3b5f89f1..3d1910317328 100644 --- a/drivers/usb/host/ohci-ps3.c +++ b/drivers/usb/host/ohci-ps3.c | |||
@@ -80,7 +80,7 @@ static int ps3_ohci_probe(struct ps3_system_bus_device *dev) | |||
80 | int result; | 80 | int result; |
81 | struct usb_hcd *hcd; | 81 | struct usb_hcd *hcd; |
82 | unsigned int virq; | 82 | unsigned int virq; |
83 | static u64 dummy_mask = DMA_32BIT_MASK; | 83 | static u64 dummy_mask = DMA_BIT_MASK(32); |
84 | 84 | ||
85 | if (usb_disabled()) { | 85 | if (usb_disabled()) { |
86 | result = -ENODEV; | 86 | result = -ENODEV; |
diff --git a/drivers/uwb/whci.c b/drivers/uwb/whci.c index 79bb06c7a76b..2e2784627ad6 100644 --- a/drivers/uwb/whci.c +++ b/drivers/uwb/whci.c | |||
@@ -162,8 +162,8 @@ static int whci_probe(struct pci_dev *pci, const struct pci_device_id *id) | |||
162 | err = -ENXIO; | 162 | err = -ENXIO; |
163 | if (!pci_set_dma_mask(pci, DMA_BIT_MASK(64))) | 163 | if (!pci_set_dma_mask(pci, DMA_BIT_MASK(64))) |
164 | pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64)); | 164 | pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64)); |
165 | else if (!pci_set_dma_mask(pci, DMA_32BIT_MASK)) | 165 | else if (!pci_set_dma_mask(pci, DMA_BIT_MASK(32))) |
166 | pci_set_consistent_dma_mask(pci, DMA_32BIT_MASK); | 166 | pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32)); |
167 | else | 167 | else |
168 | goto error_dma; | 168 | goto error_dma; |
169 | 169 | ||