aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/pci-dma.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/pci-dma.h')
-rw-r--r--include/linux/pci-dma.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/linux/pci-dma.h b/include/linux/pci-dma.h
new file mode 100644
index 000000000000..cfd63ab09abc
--- /dev/null
+++ b/include/linux/pci-dma.h
@@ -0,0 +1,20 @@
1#ifndef _LINUX_PCI_DMA_H
2#define _LINUX_PCI_DMA_H
3
4#ifdef CONFIG_NEED_DMA_MAP_STATE
5#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME;
6#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME;
7#define pci_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME)
8#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) (((PTR)->ADDR_NAME) = (VAL))
9#define pci_unmap_len(PTR, LEN_NAME) ((PTR)->LEN_NAME)
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
20#endif