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

Commit c6504be5 authored by Vinod Koul's avatar Vinod Koul
Browse files

dmaengine: stm32-dma: Fix unsigned variable compared with zero



Commit f4fd2ec0: ("dmaengine: stm32-dma: use platform_get_irq()") used
unsigned variable irq to store the results and check later for negative
errors, so update the code to use signed variable for this

Fixes: f4fd2ec0 ("dmaengine: stm32-dma: use platform_get_irq()")
Reported-by: default avatarkbuild test robot <lkp@intel.com>
Reported-by: default avatarJulia Lawall <julia.lawall@lip6.fr>
Acked-by: default avatarJulia Lawall <julia.lawall@lip6.fr>
Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent f4fd2ec0
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -1303,13 +1303,15 @@ static int stm32_dma_probe(struct platform_device *pdev)
	for (i = 0; i < STM32_DMA_MAX_CHANNELS; i++) {
	for (i = 0; i < STM32_DMA_MAX_CHANNELS; i++) {
		chan = &dmadev->chan[i];
		chan = &dmadev->chan[i];
		chan->irq = platform_get_irq(pdev, i);
		chan->irq = platform_get_irq(pdev, i);
		if (chan->irq < 0)  {
		ret = platform_get_irq(pdev, i);
			ret = chan->irq;
		if (ret < 0)  {
			if (ret != -EPROBE_DEFER)
			if (ret != -EPROBE_DEFER)
				dev_err(&pdev->dev,
				dev_err(&pdev->dev,
					"No irq resource for chan %d\n", i);
					"No irq resource for chan %d\n", i);
			goto err_unregister;
			goto err_unregister;
		}
		}
		chan->irq = ret;

		ret = devm_request_irq(&pdev->dev, chan->irq,
		ret = devm_request_irq(&pdev->dev, chan->irq,
				       stm32_dma_chan_irq, 0,
				       stm32_dma_chan_irq, 0,
				       dev_name(chan2dev(chan)), chan);
				       dev_name(chan2dev(chan)), chan);