diff options
author | Yang Hongyang <yanghy@cn.fujitsu.com> | 2009-04-06 22:01:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 11:31:12 -0400 |
commit | ce0b620160e6d15a7f5b4b00cd7b8bd956d427d1 (patch) | |
tree | f459e0a141eb65ad56517c12ad78c779608dee1d /drivers/net/wan | |
parent | 28b767967763835d8526f6baedc25a8a86052640 (diff) |
dma-mapping: replace all DMA_28BIT_MASK macro with DMA_BIT_MASK(28)
Replace all DMA_28BIT_MASK macro with DMA_BIT_MASK(28)
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/net/wan')
-rw-r--r-- | drivers/net/wan/wanxl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wan/wanxl.c b/drivers/net/wan/wanxl.c index 850d70d7b05d..8130b79a8a99 100644 --- a/drivers/net/wan/wanxl.c +++ b/drivers/net/wan/wanxl.c | |||
@@ -586,8 +586,8 @@ static int __devinit wanxl_pci_init_one(struct pci_dev *pdev, | |||
586 | We set both dma_mask and consistent_dma_mask to 28 bits | 586 | We set both dma_mask and consistent_dma_mask to 28 bits |
587 | and pray pci_alloc_consistent() will use this info. It should | 587 | and pray pci_alloc_consistent() will use this info. It should |
588 | work on most platforms */ | 588 | work on most platforms */ |
589 | if (pci_set_consistent_dma_mask(pdev, DMA_28BIT_MASK) || | 589 | if (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(28)) || |
590 | pci_set_dma_mask(pdev, DMA_28BIT_MASK)) { | 590 | pci_set_dma_mask(pdev, DMA_BIT_MASK(28))) { |
591 | printk(KERN_ERR "wanXL: No usable DMA configuration\n"); | 591 | printk(KERN_ERR "wanXL: No usable DMA configuration\n"); |
592 | return -EIO; | 592 | return -EIO; |
593 | } | 593 | } |