mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-09-18 23:09:29 +02:00
irqchip: Remove redundant dev_err()/dev_err_probe()
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() and dev_err_probe() calls.
Signed-off-by: Pan Chuang <panchuang@vivo.com>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Reviewed-by: Radu Rendec <radu@rendec.net>
Link: https://patch.msgid.link/20260714131331.494902-1-panchuang@vivo.com
This commit is contained in:
committed by
Thomas Gleixner
parent
5b4fa95e42
commit
9023960b74
@@ -464,10 +464,8 @@ static int qcom_mpm_probe(struct platform_device *pdev, struct device_node *pare
|
||||
|
||||
ret = devm_request_irq(dev, irq, qcom_mpm_handler, IRQF_NO_SUSPEND,
|
||||
"qcom_mpm", priv);
|
||||
if (ret) {
|
||||
dev_err(dev, "failed to request irq: %d\n", ret);
|
||||
if (ret)
|
||||
goto remove_domain;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
|
||||
@@ -398,7 +398,7 @@ static int rzt2h_icu_request_irqs(struct platform_device *pdev, struct irq_domai
|
||||
ret = devm_request_irq(dev, virq, handler, 0, dev_name(dev),
|
||||
data ?: (void *)(uintptr_t)offset);
|
||||
if (ret)
|
||||
return dev_err_probe(dev, ret, "Failed to request IRQ %u\n", offset);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
@@ -816,7 +816,7 @@ static int rzv2h_icu_setup_irqs(struct platform_device *pdev, struct irq_domain
|
||||
ret = devm_request_irq(dev, virq, rzv2h_icu_swint_irq, 0, dev_name(dev),
|
||||
(void *)(uintptr_t)i);
|
||||
if (ret)
|
||||
return dev_err_probe(dev, ret, "Failed to request int-ca55-%u IRQ\n", i);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Unmask and clear all IP/CA55 error interrupts */
|
||||
@@ -844,7 +844,7 @@ static int rzv2h_icu_setup_irqs(struct platform_device *pdev, struct irq_domain
|
||||
|
||||
ret = devm_request_irq(dev, virq, rzv2h_icu_error_irq, 0, dev_name(dev), rzv2h_icu_data);
|
||||
if (ret)
|
||||
return dev_err_probe(dev, ret, "Failed to request icu-error-ca55 IRQ\n");
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user