mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 18:36:39 +07:00
[media] media: davinci: vpif_capture: remove unnecessary loop for IRQ resource
For vpif capture driver each IRQ resource contains a single IRQ so drop the second loop. Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
b2de4f2584
commit
a76a0b3381
@ -2015,16 +2015,13 @@ static __init int vpif_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
while ((res = platform_get_resource(pdev, IORESOURCE_IRQ, res_idx))) {
|
||||
for (i = res->start; i <= res->end; i++) {
|
||||
err = devm_request_irq(&pdev->dev, i, vpif_channel_isr,
|
||||
IRQF_SHARED, "VPIF_Capture",
|
||||
(void *)(&vpif_obj.dev[res_idx]->
|
||||
channel_id));
|
||||
if (err) {
|
||||
err = -EINVAL;
|
||||
goto vpif_unregister;
|
||||
|
||||
}
|
||||
err = devm_request_irq(&pdev->dev, res->start, vpif_channel_isr,
|
||||
IRQF_SHARED, "VPIF_Capture",
|
||||
(void *)(&vpif_obj.dev[res_idx]->
|
||||
channel_id));
|
||||
if (err) {
|
||||
err = -EINVAL;
|
||||
goto vpif_unregister;
|
||||
}
|
||||
res_idx++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user