dma-mapping-broken.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_GENERIC_DMA_MAPPING_H
  2. #define _ASM_GENERIC_DMA_MAPPING_H
  3. /* This is used for archs that do not support DMA */
  4. static inline void *
  5. dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle,
  6.    int flag)
  7. {
  8. BUG();
  9. return NULL;
  10. }
  11. static inline void
  12. dma_free_coherent(struct device *dev, size_t size, void *cpu_addr,
  13.     dma_addr_t dma_handle)
  14. {
  15. BUG();
  16. }
  17. #endif /* _ASM_GENERIC_DMA_MAPPING_H */