From: Sachin Kamat Date: Mon, 4 Jun 2012 11:39:45 +0000 (+0530) Subject: DMA: PL330: Add missing static storage class specifier X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5a67ac572e102f7d877b8a3a18a59315186e3e99;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git DMA: PL330: Add missing static storage class specifier Fixes the following sparse warning: drivers/dma/pl330.c:2542:5: warning: symbol 'add_desc' was not declared. Should it be static? Signed-off-by: Sachin Kamat Signed-off-by: Vinod Koul --- diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c index 6d550421da7a..3ce7d553a746 100644 --- a/drivers/dma/pl330.c +++ b/drivers/dma/pl330.c @@ -2539,7 +2539,7 @@ static inline void _init_desc(struct dma_pl330_desc *desc) } /* Returns the number of descriptors added to the DMAC pool */ -int add_desc(struct dma_pl330_dmac *pdmac, gfp_t flg, int count) +static int add_desc(struct dma_pl330_dmac *pdmac, gfp_t flg, int count) { struct dma_pl330_desc *desc; unsigned long flags;