Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cbeae418 authored by Axel Lin's avatar Axel Lin Committed by Dan Williams
Browse files

dma: imx-dma: fix imxdma_probe error path



otherwise, i will be -1 inside the latest iteration of the while loop.

Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Acked-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent e8a7e48b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -379,7 +379,7 @@ static int __init imxdma_probe(struct platform_device *pdev)
	return 0;

err_init:
	while (i-- >= 0) {
	while (--i >= 0) {
		struct imxdma_channel *imxdmac = &imxdma->channel[i];
		imx_dma_free(imxdmac->imxdma_channel);
	}