diff options
author | Glauber Costa <gcosta@redhat.com> | 2008-03-25 17:36:21 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-19 13:19:56 -0400 |
commit | 22456b97148be300e25e9cb97244656775972475 (patch) | |
tree | d85225c64c776f61c9485a5ca1b06f32c53cc5fe /include/asm-x86/dma-mapping_32.h | |
parent | 6f5366354bf86f8d2c1cf241c9bbf44b2d350e30 (diff) |
x86: implement dma_map_single through dma_ops
That's already the name of the game for x86_64. For i386,
we add a pci-base_32.c, that will hold the default operations.
The function call itself goes through dma-mapping.h , the common
header
Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/dma-mapping_32.h')
-rw-r--r-- | include/asm-x86/dma-mapping_32.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/asm-x86/dma-mapping_32.h b/include/asm-x86/dma-mapping_32.h index 55f01bd9e556..b496306d5e98 100644 --- a/include/asm-x86/dma-mapping_32.h +++ b/include/asm-x86/dma-mapping_32.h | |||
@@ -17,16 +17,6 @@ void *dma_alloc_coherent(struct device *dev, size_t size, | |||
17 | void dma_free_coherent(struct device *dev, size_t size, | 17 | void dma_free_coherent(struct device *dev, size_t size, |
18 | void *vaddr, dma_addr_t dma_handle); | 18 | void *vaddr, dma_addr_t dma_handle); |
19 | 19 | ||
20 | static inline dma_addr_t | ||
21 | dma_map_single(struct device *dev, void *ptr, size_t size, | ||
22 | enum dma_data_direction direction) | ||
23 | { | ||
24 | BUG_ON(!valid_dma_direction(direction)); | ||
25 | WARN_ON(size == 0); | ||
26 | flush_write_buffers(); | ||
27 | return virt_to_phys(ptr); | ||
28 | } | ||
29 | |||
30 | static inline void | 20 | static inline void |
31 | dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, | 21 | dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, |
32 | enum dma_data_direction direction) | 22 | enum dma_data_direction direction) |