Skip to content

Commit

Permalink
dma: coh901318: avoid unbalanced locking
Browse files Browse the repository at this point in the history
In case the len is 0 we must return without trying to unlock the lock that was
not locked.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
  • Loading branch information
Andy Shevchenko authored and Vinod Koul committed Feb 14, 2013
1 parent 978c417 commit 4168d0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/dma/coh901318_lli.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ coh901318_lli_alloc(struct coh901318_pool *pool, unsigned int len)
dma_addr_t phy;

if (len == 0)
goto err;
return NULL;

spin_lock(&pool->lock);

Expand Down

0 comments on commit 4168d0d

Please sign in to comment.