aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/pci-dma.h
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2010-03-10 18:23:31 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2010-03-12 18:52:42 -0500
commit0acedc124aca35f5cce9d4ee288dc372bf517e09 (patch)
tree699113a95be38de29457d0cc71139d9c82efba3e /include/linux/pci-dma.h
parentf41b177157718abe9a93868bb76e47d4a6f3681d (diff)
dma-mapping.h: add the dma_unmap state API
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 <fujita.tomonori@lab.ntt.co.jp> Cc: James Bottomley <James.Bottomley@suse.de> Cc: David S. Miller <davem@davemloft.net> Cc: Jesse Barnes <jbarnes@virtuousgeek.org> Cc: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/pci-dma.h')
-rw-r--r--include/linux/pci-dma.h21
1 files changed, 6 insertions, 15 deletions
diff --git a/include/linux/pci-dma.h b/include/linux/pci-dma.h
index cfd63ab09abc..549a041f9c08 100644
--- a/include/linux/pci-dma.h
+++ b/include/linux/pci-dma.h
@@ -1,20 +1,11 @@
1#ifndef _LINUX_PCI_DMA_H 1#ifndef _LINUX_PCI_DMA_H
2#define _LINUX_PCI_DMA_H 2#define _LINUX_PCI_DMA_H
3 3
4#ifdef CONFIG_NEED_DMA_MAP_STATE 4#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) DEFINE_DMA_UNMAP_ADDR(ADDR_NAME);
5#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME; 5#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) DEFINE_DMA_UNMAP_LEN(LEN_NAME);
6#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME; 6#define pci_unmap_addr dma_unmap_addr
7#define pci_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME) 7#define pci_unmap_addr_set dma_unmap_addr_set
8#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) (((PTR)->ADDR_NAME) = (VAL)) 8#define pci_unmap_len dma_unmap_len
9#define pci_unmap_len(PTR, LEN_NAME) ((PTR)->LEN_NAME) 9#define pci_unmap_len_set dma_unmap_len_set
10#define pci_unmap_len_set(PTR, LEN_NAME, VAL) (((PTR)->LEN_NAME) = (VAL))
11#else
12#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
13#define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
14#define pci_unmap_addr(PTR, ADDR_NAME) (0)
15#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
16#define pci_unmap_len(PTR, LEN_NAME) (0)
17#define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
18#endif
19 10
20#endif 11#endif