blob: 25cab62a28c455e653f37527cd5348bb061132b2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Daniel Mack13b30062013-08-10 18:52:18 +02002#ifndef _MMP_PDMA_H_
3#define _MMP_PDMA_H_
4
5struct dma_chan;
6
7#ifdef CONFIG_MMP_PDMA
8bool mmp_pdma_filter_fn(struct dma_chan *chan, void *param);
9#else
10static inline bool mmp_pdma_filter_fn(struct dma_chan *chan, void *param)
11{
12 return false;
13}
14#endif
15
16#endif /* _MMP_PDMA_H_ */