Commit 0741b819 authored by Colin Ian King's avatar Colin Ian King Committed by Vinod Koul

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: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent 99340754
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment