]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
dmaengine: bcm2835: fix unexported function
authorBen Dooks <ben.dooks@codethink.co.uk>
Tue, 7 Jun 2016 16:14:56 +0000 (17:14 +0100)
committerVinod Koul <vinod.koul@intel.com>
Wed, 8 Jun 2016 03:37:05 +0000 (09:07 +0530)
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 <ben.dooks@codethink.co.uk>
Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/bcm2835-dma.c

index 6149b27c33ad0962a19ed411055d9d05bfb252d3..9ecb94238aafad273751993239275106a9f7d710 100644 (file)
@@ -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)
 {