cregit-Linux how code gets into the kernel

Release 4.12 include/linux/dma/pxa-dma.h

#ifndef _PXA_DMA_H_

#define _PXA_DMA_H_


enum pxad_chan_prio {
	
PXAD_PRIO_HIGHEST = 0,
	
PXAD_PRIO_NORMAL,
	
PXAD_PRIO_LOW,
	
PXAD_PRIO_LOWEST,
};


struct pxad_param {
	
unsigned int drcmr;
	
enum pxad_chan_prio prio;
};

struct dma_chan;

#ifdef CONFIG_PXA_DMA
bool pxad_filter_fn(struct dma_chan *chan, void *param);
#else

static inline bool pxad_filter_fn(struct dma_chan *chan, void *param) { return false; }

Contributors

PersonTokensPropCommitsCommitProp
Robert Jarzmik19100.00%1100.00%
Total19100.00%1100.00%

#endif #endif /* _PXA_DMA_H_ */

Overall Contributors

PersonTokensPropCommitsCommitProp
Robert Jarzmik78100.00%1100.00%
Total78100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.