mmp-pdma.h 317 B

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