mmp-pdma.h 278 B

123456789101112131415
  1. #ifndef _MMP_PDMA_H_
  2. #define _MMP_PDMA_H_
  3. struct dma_chan;
  4. #ifdef CONFIG_MMP_PDMA
  5. bool mmp_pdma_filter_fn(struct dma_chan *chan, void *param);
  6. #else
  7. static inline bool mmp_pdma_filter_fn(struct dma_chan *chan, void *param)
  8. {
  9. return false;
  10. }
  11. #endif
  12. #endif /* _MMP_PDMA_H_ */