Since commit 55b48e23f5c4 ("genirq/devres: Add error handling in
devm_request_*_irq()"), devm_request_threaded_irq() automatically logs
detailed error messages on failure. Remove the now-redundant
driver-specific dev_err() calls.Signed-off-by: Pan Chuang <[email protected]> --- drivers/accel/ethosu/ethosu_job.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/accel/ethosu/ethosu_job.c b/drivers/accel/ethosu/ethosu_job.c index 74f3493fb11a..cdc0d61ee53d 100644 --- a/drivers/accel/ethosu/ethosu_job.c +++ b/drivers/accel/ethosu/ethosu_job.c @@ -338,10 +338,8 @@ int ethosu_job_init(struct ethosu_device *edev) ethosu_job_irq_handler_thread, IRQF_SHARED, KBUILD_MODNAME, edev); - if (ret) { - dev_err(dev, "failed to request irq\n"); + if (ret) return ret; - } edev->fence_context = dma_fence_context_alloc(1); -- 2.34.1
