diff options
author | Yang Hongyang <yanghy@cn.fujitsu.com> | 2009-04-07 04:01:13 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 17:31:10 +0200 |
commit | 6a35528a8346f6e6fd32ed7e51f04d1fa4ca2c01 (patch) | |
tree | 9caaf8645b573687bbcf3a16b5aa7dd233fed46e /drivers/uwb | |
parent | fs/romfs: return f_fsid for statfs(2) (diff) | |
download | linux-6a35528a8346f6e6fd32ed7e51f04d1fa4ca2c01.tar.xz linux-6a35528a8346f6e6fd32ed7e51f04d1fa4ca2c01.zip |
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/uwb')
-rw-r--r-- | drivers/uwb/whci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/uwb/whci.c b/drivers/uwb/whci.c index 1f8964ed9882..79bb06c7a76b 100644 --- a/drivers/uwb/whci.c +++ b/drivers/uwb/whci.c @@ -160,8 +160,8 @@ static int whci_probe(struct pci_dev *pci, const struct pci_device_id *id) pci_enable_msi(pci); pci_set_master(pci); err = -ENXIO; - if (!pci_set_dma_mask(pci, DMA_64BIT_MASK)) - pci_set_consistent_dma_mask(pci, DMA_64BIT_MASK); + if (!pci_set_dma_mask(pci, DMA_BIT_MASK(64))) + pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64)); else if (!pci_set_dma_mask(pci, DMA_32BIT_MASK)) pci_set_consistent_dma_mask(pci, DMA_32BIT_MASK); else |