mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 16:44:58 +02:00
[media] media: coda: Use full device name for request_irq()
This will help to debug driver, allows us to see the full name of
the device through /proc/interrupts.
CPU0
...
69: 0 mxc-avic 53 10023000.coda
...
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Acked-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
b1c090d0f4
commit
08a72e4c0a
|
|
@ -3233,7 +3233,7 @@ static int coda_probe(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
if (devm_request_threaded_irq(&pdev->dev, irq, NULL, coda_irq_handler,
|
||||
IRQF_ONESHOT, CODA_NAME, dev) < 0) {
|
||||
IRQF_ONESHOT, dev_name(&pdev->dev), dev) < 0) {
|
||||
dev_err(&pdev->dev, "failed to request irq\n");
|
||||
return -ENOENT;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user