diff options
author | Yang Hongyang <yanghy@cn.fujitsu.com> | 2009-04-06 22:01:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 11:31:11 -0400 |
commit | 929a22a558429bd22001d6b41cf31c233c68a5e2 (patch) | |
tree | f0bb2140393d5434a423e924d262453dab76c011 /drivers/usb | |
parent | 284901a90a9e0b812ca3f5f852cbbfb60d10249d (diff) |
dma-mapping: replace all DMA_31BIT_MASK macro with DMA_BIT_MASK(31)
Replace all DMA_31BIT_MASK macro with DMA_BIT_MASK(31)
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/usb')
-rw-r--r-- | drivers/usb/host/ehci-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-pci.c b/drivers/usb/host/ehci-pci.c index abb9a7706ec7..5aa8bce90e1f 100644 --- a/drivers/usb/host/ehci-pci.c +++ b/drivers/usb/host/ehci-pci.c | |||
@@ -108,7 +108,7 @@ static int ehci_pci_setup(struct usb_hcd *hcd) | |||
108 | case 0x00d8: /* CK8 */ | 108 | case 0x00d8: /* CK8 */ |
109 | case 0x00e8: /* CK8S */ | 109 | case 0x00e8: /* CK8S */ |
110 | if (pci_set_consistent_dma_mask(pdev, | 110 | if (pci_set_consistent_dma_mask(pdev, |
111 | DMA_31BIT_MASK) < 0) | 111 | DMA_BIT_MASK(31)) < 0) |
112 | ehci_warn(ehci, "can't enable NVidia " | 112 | ehci_warn(ehci, "can't enable NVidia " |
113 | "workaround for >2GB RAM\n"); | 113 | "workaround for >2GB RAM\n"); |
114 | break; | 114 | break; |