aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2016-10-19 12:05:53 +0100
committerVinod Koul <vinod.koul@intel.com>2016-10-19 18:47:29 +0530
commit0741b819246029a7e53b8edcc5693debd7c00c8f (patch)
treeed494dbf4ab2f67706c869c0e4e9bfee3ee7a807 /drivers/dma
parentdmaengine: omap-dma: add support for pause of non-cyclic transfers (diff)
downloadlinux-dev-0741b819246029a7e53b8edcc5693debd7c00c8f.tar.xz
linux-dev-0741b819246029a7e53b8edcc5693debd7c00c8f.zip
dmaengine: omap-dma: initialize can_pause to false
can_pause is not initialized so it contains garbage. Fix this by setting it to false. Found using static analysis with cppcheck. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/omap-dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/omap-dma.c b/drivers/dma/omap-dma.c
index fd6b9e6834ad..15eb8024666b 100644
--- a/drivers/dma/omap-dma.c
+++ b/drivers/dma/omap-dma.c
@@ -1286,7 +1286,7 @@ static int omap_dma_pause(struct dma_chan *chan)
struct omap_dmadev *od = to_omap_dma_dev(chan->device);
unsigned long flags;
int ret = -EINVAL;
- bool can_pause;
+ bool can_pause = false;
spin_lock_irqsave(&od->irq_lock, flags);