From: Ben Dooks Date: Tue, 7 Jun 2016 16:14:56 +0000 (+0100) Subject: dmaengine: bcm2835: fix unexported function X-Git-Tag: v4.8-rc1~117^2~15^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=636372281f514af1910f5df5e83bc72b56b4bd15;p=karo-tx-linux.git dmaengine: bcm2835: fix unexported function The bcm2835_dma_prep_dma_memcpy() function is not exported outside the driver, so make it static to avoid the following warning: drivers/dma/bcm2835-dma.c:616:32: warning: symbol 'bcm2835_dma_prep_dma_memcpy' was not declared. Should it be static? Signed-off-by: Ben Dooks Reviewed-by: Eric Anholt Signed-off-by: Vinod Koul --- diff --git a/drivers/dma/bcm2835-dma.c b/drivers/dma/bcm2835-dma.c index 6149b27c33ad..9ecb94238aaf 100644 --- a/drivers/dma/bcm2835-dma.c +++ b/drivers/dma/bcm2835-dma.c @@ -613,7 +613,7 @@ static void bcm2835_dma_issue_pending(struct dma_chan *chan) spin_unlock_irqrestore(&c->vc.lock, flags); } -struct dma_async_tx_descriptor *bcm2835_dma_prep_dma_memcpy( +static struct dma_async_tx_descriptor *bcm2835_dma_prep_dma_memcpy( struct dma_chan *chan, dma_addr_t dst, dma_addr_t src, size_t len, unsigned long flags) {