mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 23:20:32 -04:00
Merge tag 'pxa-for-4.21' of https://github.com/rjarzmik/linux into next/drivers
This pxa update brings only a single patch, finishing the dmaengine conversion. * tag 'pxa-for-4.21' of https://github.com/rjarzmik/linux: dmaengine: pxa: make the filter function internal Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
@@ -179,7 +179,7 @@ static unsigned int pxad_drcmr(unsigned int line)
|
||||
return 0x1000 + line * 4;
|
||||
}
|
||||
|
||||
bool pxad_filter_fn(struct dma_chan *chan, void *param);
|
||||
static bool pxad_filter_fn(struct dma_chan *chan, void *param);
|
||||
|
||||
/*
|
||||
* Debug fs
|
||||
@@ -1500,7 +1500,7 @@ static struct platform_driver pxad_driver = {
|
||||
.remove = pxad_remove,
|
||||
};
|
||||
|
||||
bool pxad_filter_fn(struct dma_chan *chan, void *param)
|
||||
static bool pxad_filter_fn(struct dma_chan *chan, void *param)
|
||||
{
|
||||
struct pxad_chan *c = to_pxad_chan(chan);
|
||||
struct pxad_param *p = param;
|
||||
@@ -1513,7 +1513,6 @@ bool pxad_filter_fn(struct dma_chan *chan, void *param)
|
||||
|
||||
return true;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(pxad_filter_fn);
|
||||
|
||||
module_platform_driver(pxad_driver);
|
||||
|
||||
|
||||
@@ -23,15 +23,4 @@ struct pxad_param {
|
||||
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;
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _PXA_DMA_H_ */
|
||||
|
||||
Reference in New Issue
Block a user