diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2006-07-05 20:18:39 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-07-05 20:18:39 -0700 |
commit | 7233589d77fdb593b482a8b7ee867e901f54b593 (patch) | |
tree | dda022429dd1f8f74a53bc97b4f2ffad89d7a379 /include/asm-sparc64/dma-mapping.h | |
parent | e340221acda6bc0bf05a0ff6e6114902c4307670 (diff) |
[SPARC64]: Fix sparc64 build errors when CONFIG_PCI=n.
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc64/dma-mapping.h')
-rw-r--r-- | include/asm-sparc64/dma-mapping.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/asm-sparc64/dma-mapping.h b/include/asm-sparc64/dma-mapping.h index 0f5b89c9323b..27c46fbeebd6 100644 --- a/include/asm-sparc64/dma-mapping.h +++ b/include/asm-sparc64/dma-mapping.h @@ -160,6 +160,20 @@ static inline void dma_free_coherent(struct device *dev, size_t size, BUG(); } +static inline void +dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle, size_t size, + enum dma_data_direction direction) +{ + BUG(); +} + +static inline void +dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, size_t size, + enum dma_data_direction direction) +{ + BUG(); +} + #endif /* PCI */ |