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/infiniband/hw/mthca | |
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/infiniband/hw/mthca')
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_main.c b/drivers/infiniband/hw/mthca/mthca_main.c index 52f60f4eea00..5d234204f7b7 100644 --- a/drivers/infiniband/hw/mthca/mthca_main.c +++ b/drivers/infiniband/hw/mthca/mthca_main.c | |||
@@ -1016,7 +1016,7 @@ static int __mthca_init_one(struct pci_dev *pdev, int hca_type) | |||
1016 | 1016 | ||
1017 | pci_set_master(pdev); | 1017 | pci_set_master(pdev); |
1018 | 1018 | ||
1019 | err = pci_set_dma_mask(pdev, DMA_64BIT_MASK); | 1019 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); |
1020 | if (err) { | 1020 | if (err) { |
1021 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n"); | 1021 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n"); |
1022 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | 1022 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); |
@@ -1025,7 +1025,7 @@ static int __mthca_init_one(struct pci_dev *pdev, int hca_type) | |||
1025 | goto err_free_res; | 1025 | goto err_free_res; |
1026 | } | 1026 | } |
1027 | } | 1027 | } |
1028 | err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); | 1028 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
1029 | if (err) { | 1029 | if (err) { |
1030 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit " | 1030 | dev_warn(&pdev->dev, "Warning: couldn't set 64-bit " |
1031 | "consistent PCI DMA mask.\n"); | 1031 | "consistent PCI DMA mask.\n"); |