]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
dmaengine: make mux_configure32 static
authorMao Wenan <maowenan@huawei.com>
Wed, 14 Aug 2019 07:21:04 +0000 (15:21 +0800)
committerVinod Koul <vkoul@kernel.org>
Tue, 20 Aug 2019 11:39:34 +0000 (17:09 +0530)
There is one sparse warning in drivers/dma/fsl-edma-common.c:
drivers/dma/fsl-edma-common.c:93:6: warning: symbol 'mux_configure32'
was not declared. Should it be static?

Fix it by setting mux_configure32() as static.

Fixes: 232a7f18cf8ec ("dmaengine: fsl-edma: add i.mx7ulp edma2 version support")
Signed-off-by: Mao Wenan <maowenan@huawei.com>
Link: https://lore.kernel.org/r/20190814072105.144107-2-maowenan@huawei.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/fsl-edma-common.c

index 6d6d8a4e8e389a9688f3f7a052330a9b90c4e534..264c448de40964d9ef2d763beab9d9c07a77ad74 100644 (file)
@@ -90,7 +90,7 @@ static void mux_configure8(struct fsl_edma_chan *fsl_chan, void __iomem *addr,
        iowrite8(val8, addr + off);
 }
 
-void mux_configure32(struct fsl_edma_chan *fsl_chan, void __iomem *addr,
+static void mux_configure32(struct fsl_edma_chan *fsl_chan, void __iomem *addr,
                     u32 off, u32 slot, bool enable)
 {
        u32 val;