From: Jarkko Nikula Date: Wed, 12 Aug 2015 08:30:59 +0000 (+0300) Subject: dmaengine: Make __dma_request_slave_channel_compat() name argument constant X-Git-Tag: next-20150824~70^2~9^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1dc042885456dff457d0b758b69209dcafa688ec;p=uclinux-h8%2Flinux.git 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 Signed-off-by: Vinod Koul --- diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 1b866e9a6ed1..3a732ac95285 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h @@ -1229,7 +1229,7 @@ struct dma_chan *dma_get_any_slave_channel(struct dma_device *device); static inline struct dma_chan *__dma_request_slave_channel_compat(const dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param, - struct device *dev, char *name) + struct device *dev, const char *name) { struct dma_chan *chan;