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