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/scsi/hptiop.c | |
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/scsi/hptiop.c')
-rw-r--r-- | drivers/scsi/hptiop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/hptiop.c b/drivers/scsi/hptiop.c index af1f0af0c5ac..a13d78150cb5 100644 --- a/drivers/scsi/hptiop.c +++ b/drivers/scsi/hptiop.c | |||
@@ -958,7 +958,7 @@ static int __devinit hptiop_probe(struct pci_dev *pcidev, | |||
958 | pci_set_master(pcidev); | 958 | pci_set_master(pcidev); |
959 | 959 | ||
960 | /* Enable 64bit DMA if possible */ | 960 | /* Enable 64bit DMA if possible */ |
961 | if (pci_set_dma_mask(pcidev, DMA_64BIT_MASK)) { | 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_32BIT_MASK)) { |
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; |