Commit 2b9b06a7 authored by Lad Prabhakar's avatar Lad Prabhakar Committed by Mauro Carvalho Chehab

media: stm32-dma2d: Use platform_get_irq() to get the interrupt

platform_get_resource(pdev, IORESOURCE_IRQ, ..) relies on static
allocation of IRQ resources in DT core code, this causes an issue
when using hierarchical interrupt domains using "interrupts" property
in the node as this bypasses the hierarchical setup and messes up the
irq chaining.

In preparation for removal of static setup of IRQ resource from DT core
code use platform_get_irq().
Signed-off-by: default avatarLad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 8fae0d9f
...@@ -633,14 +633,11 @@ static int dma2d_probe(struct platform_device *pdev) ...@@ -633,14 +633,11 @@ static int dma2d_probe(struct platform_device *pdev)
goto put_clk_gate; goto put_clk_gate;
} }
res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); ret = platform_get_irq(pdev, 0);
if (!res) { if (ret < 0)
dev_err(&pdev->dev, "failed to find IRQ\n");
ret = -ENXIO;
goto unprep_clk_gate; goto unprep_clk_gate;
}
dev->irq = res->start; dev->irq = ret;
ret = devm_request_irq(&pdev->dev, dev->irq, dma2d_isr, ret = devm_request_irq(&pdev->dev, dev->irq, dma2d_isr,
0, pdev->name, dev); 0, pdev->name, dev);
......
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