mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
dma-mapping: replace all DMA_32BIT_MASK macro with DMA_BIT_MASK(32)
Replace all DMA_32BIT_MASK macro with DMA_BIT_MASK(32) 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>
This commit is contained in:
parent
6afd142fd0
commit
284901a90a
173 changed files with 309 additions and 313 deletions
|
@ -162,8 +162,8 @@ static int whci_probe(struct pci_dev *pci, const struct pci_device_id *id)
|
|||
err = -ENXIO;
|
||||
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 if (!pci_set_dma_mask(pci, DMA_BIT_MASK(32)))
|
||||
pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32));
|
||||
else
|
||||
goto error_dma;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue