dmaengine: pxa_dma: Remove an erroneous BUG_ON() in pxad_free_desc()
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sat, 7 Oct 2023 11:13:09 +0000 (13:13 +0200)
committerVinod Koul <vkoul@kernel.org>
Mon, 9 Oct 2023 05:17:26 +0000 (10:47 +0530)
commit83c761f568733277ce1f7eb9dc9e890649c29a8c
treee1818c5b1656c619cb577a140ecefc72194eb73e
parent90a6c030f506585f484a9804aafe29cb42b93697
dmaengine: pxa_dma: Remove an erroneous BUG_ON() in pxad_free_desc()

If pxad_alloc_desc() fails on the first dma_pool_alloc() call, then
sw_desc->nb_desc is zero.
In such a case pxad_free_desc() is called and it will BUG_ON().

Remove this erroneous BUG_ON().

It is also useless, because if "sw_desc->nb_desc == 0", then, on the first
iteration of the for loop, i is -1 and the loop will not be executed.
(both i and sw_desc->nb_desc are 'int')

Fixes: a57e16cf0333 ("dmaengine: pxa: add pxa dmaengine driver")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/c8fc5563c9593c914fde41f0f7d1489a21b45a9a.1696676782.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/pxa_dma.c