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/scsi/dpt_i2o.c | |
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/scsi/dpt_i2o.c')
-rw-r--r-- | drivers/scsi/dpt_i2o.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); |