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