diff options
author | Yang Hongyang <yanghy@cn.fujitsu.com> | 2009-04-06 22:01:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 11:31:10 -0400 |
commit | 6a35528a8346f6e6fd32ed7e51f04d1fa4ca2c01 (patch) | |
tree | 9caaf8645b573687bbcf3a16b5aa7dd233fed46e /drivers/ata | |
parent | 8a59f5d2526593c6bc1a0754c3a16ccc9ed41ce3 (diff) |
dma-mapping: replace all DMA_64BIT_MASK macro with DMA_BIT_MASK(64)
Replace all DMA_64BIT_MASK macro with DMA_BIT_MASK(64)
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/ata')
-rw-r--r-- | drivers/ata/ahci.c | 4 | ||||
-rw-r--r-- | drivers/ata/sata_mv.c | 4 | ||||
-rw-r--r-- | drivers/ata/sata_qstor.c | 4 | ||||
-rw-r--r-- | drivers/ata/sata_sil24.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 788bba2b1e17..207d775c3c27 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -2405,8 +2405,8 @@ static int ahci_configure_dma_masks(struct pci_dev *pdev, int using_dac) | |||
2405 | int rc; | 2405 | int rc; |
2406 | 2406 | ||
2407 | if (using_dac && | 2407 | if (using_dac && |
2408 | !pci_set_dma_mask(pdev, DMA_64BIT_MASK)) { | 2408 | !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
2409 | rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); | 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_32BIT_MASK); |
2412 | if (rc) { | 2412 | if (rc) { |
diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c index a377226b81c8..45e0fe191afc 100644 --- a/drivers/ata/sata_mv.c +++ b/drivers/ata/sata_mv.c | |||
@@ -3913,8 +3913,8 @@ static int pci_go_64(struct pci_dev *pdev) | |||
3913 | { | 3913 | { |
3914 | int rc; | 3914 | int rc; |
3915 | 3915 | ||
3916 | if (!pci_set_dma_mask(pdev, DMA_64BIT_MASK)) { | 3916 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
3917 | rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); | 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_32BIT_MASK); |
3920 | if (rc) { | 3920 | if (rc) { |
diff --git a/drivers/ata/sata_qstor.c b/drivers/ata/sata_qstor.c index c3936d35cdac..7b37c27d7972 100644 --- a/drivers/ata/sata_qstor.c +++ b/drivers/ata/sata_qstor.c | |||
@@ -584,8 +584,8 @@ static int qs_set_dma_masks(struct pci_dev *pdev, void __iomem *mmio_base) | |||
584 | int rc, have_64bit_bus = (bus_info & QS_HPHY_64BIT); | 584 | int rc, have_64bit_bus = (bus_info & QS_HPHY_64BIT); |
585 | 585 | ||
586 | if (have_64bit_bus && | 586 | if (have_64bit_bus && |
587 | !pci_set_dma_mask(pdev, DMA_64BIT_MASK)) { | 587 | !pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
588 | rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); | 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_32BIT_MASK); |
591 | if (rc) { | 591 | if (rc) { |
diff --git a/drivers/ata/sata_sil24.c b/drivers/ata/sata_sil24.c index 0d8990dcdfcd..37730bc2f09f 100644 --- a/drivers/ata/sata_sil24.c +++ b/drivers/ata/sata_sil24.c | |||
@@ -1297,8 +1297,8 @@ static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1297 | host->iomap = iomap; | 1297 | host->iomap = iomap; |
1298 | 1298 | ||
1299 | /* configure and activate the device */ | 1299 | /* configure and activate the device */ |
1300 | if (!pci_set_dma_mask(pdev, DMA_64BIT_MASK)) { | 1300 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { |
1301 | rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); | 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_32BIT_MASK); |
1304 | if (rc) { | 1304 | if (rc) { |