diff mbox series

[-next] dmaengine: moxart-dma: Drop pointless static qualifier in moxart_probe()

Message ID 20200505101353.195446-1-yuehaibing@huawei.com (mailing list archive)
State Accepted
Headers show
Series [-next] dmaengine: moxart-dma: Drop pointless static qualifier in moxart_probe() | expand

Commit Message

Yue Haibing May 5, 2020, 10:13 a.m. UTC
There is no need to have the 'void __iomem *dma_base_addr' variable
static since new value always be assigned before use it.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/dma/moxart-dma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Vinod Koul May 13, 2020, 12:03 p.m. UTC | #1
On 05-05-20, 10:13, YueHaibing wrote:
> There is no need to have the 'void __iomem *dma_base_addr' variable
> static since new value always be assigned before use it.

Applied, thanks
diff mbox series

Patch

diff --git a/drivers/dma/moxart-dma.c b/drivers/dma/moxart-dma.c
index 2a77fa319d78..347146a6e1d0 100644
--- a/drivers/dma/moxart-dma.c
+++ b/drivers/dma/moxart-dma.c
@@ -568,7 +568,7 @@  static int moxart_probe(struct platform_device *pdev)
 	struct device *dev = &pdev->dev;
 	struct device_node *node = dev->of_node;
 	struct resource *res;
-	static void __iomem *dma_base_addr;
+	void __iomem *dma_base_addr;
 	int ret, i;
 	unsigned int irq;
 	struct moxart_chan *ch;