mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
Adds the following macros: DECLARE_DMA_UNMAP_ADDR(ADDR_NAME) DECLARE_DMA_UNMAP_LEN(LEN_NAME) dma_unmap_addr(PTR, ADDR_NAME) dma_unmap_addr_set(PTR, ADDR_NAME, VAL) dma_unmap_len(PTR, LEN_NAME) dma_unmap_len_set(PTR, LEN_NAME, VAL) The API corresponds to the pci_unmap state API. We'll move to this new generic API from the PCI specific API in the long term. As include/asm-generic/pci-dma-compat.h does, the pci_unmap API simply calls the new generic API for some time. Signed-off-by: FUJITA Tomonori <[email protected]> Cc: James Bottomley <[email protected]> Cc: David S. Miller <[email protected]> Cc: Jesse Barnes <[email protected]> Cc: Arnd Bergmann <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
12 lines
415 B
C
12 lines
415 B
C
#ifndef _LINUX_PCI_DMA_H
|
|
#define _LINUX_PCI_DMA_H
|
|
|
|
#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) DEFINE_DMA_UNMAP_ADDR(ADDR_NAME);
|
|
#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) DEFINE_DMA_UNMAP_LEN(LEN_NAME);
|
|
#define pci_unmap_addr dma_unmap_addr
|
|
#define pci_unmap_addr_set dma_unmap_addr_set
|
|
#define pci_unmap_len dma_unmap_len
|
|
#define pci_unmap_len_set dma_unmap_len_set
|
|
|
|
#endif
|