mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 20:54:03 +02:00
fbdev: omapfb/dsi-cm: Remove redundant dev_err()
Since commit 55b48e23f5 ("genirq/devres: Add error handling in
devm_request_*_irq()"), devm_request_irq() automatically logs
detailed error messages on failure. Remove the now-redundant
driver-specific dev_err() call.
Signed-off-by: Pan Chuang <panchuang@vivo.com>
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
parent
87a1bc216d
commit
3c82279841
|
|
@ -1185,10 +1185,8 @@ static int dsicm_probe(struct platform_device *pdev)
|
|||
IRQF_TRIGGER_RISING,
|
||||
"taal vsync", ddata);
|
||||
|
||||
if (r) {
|
||||
dev_err(dev, "IRQ request failed\n");
|
||||
if (r)
|
||||
return r;
|
||||
}
|
||||
|
||||
INIT_DEFERRABLE_WORK(&ddata->te_timeout_work,
|
||||
dsicm_te_timeout_work_callback);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user