mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
dmaengine: Make __dma_request_slave_channel_compat() name argument constant
Inline function __dma_request_slave_channel_compat() doesn't modify "name" argument but passes it to dma_request_slave_channel() which already takes it as a constant. Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
This commit is contained in:
parent
0e95fb9ceb
commit
1dc0428854
1 changed files with 1 additions and 1 deletions
|
@ -1229,7 +1229,7 @@ struct dma_chan *dma_get_any_slave_channel(struct dma_device *device);
|
||||||
static inline struct dma_chan
|
static inline struct dma_chan
|
||||||
*__dma_request_slave_channel_compat(const dma_cap_mask_t *mask,
|
*__dma_request_slave_channel_compat(const dma_cap_mask_t *mask,
|
||||||
dma_filter_fn fn, void *fn_param,
|
dma_filter_fn fn, void *fn_param,
|
||||||
struct device *dev, char *name)
|
struct device *dev, const char *name)
|
||||||
{
|
{
|
||||||
struct dma_chan *chan;
|
struct dma_chan *chan;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue