[PATCH v2 03/10] power: supply: max77705: Drop duplicated IRQ error message
Krzysztof Kozlowski
krzysztof.kozlowski at oss.qualcomm.com
Thu Mar 5 13:45:42 PST 2026
Core already prints error message on devm_request_threaded_irq()
failure, so no need to do that second time.
Suggested-by: Andy Shevchenko <andriy.shevchenko at linux.intel.com>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski at oss.qualcomm.com>
---
Changes in v2:
1. New patch
---
drivers/power/supply/max77705_charger.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/drivers/power/supply/max77705_charger.c b/drivers/power/supply/max77705_charger.c
index 5dd02f658f5b..0dfe4ab10919 100644
--- a/drivers/power/supply/max77705_charger.c
+++ b/drivers/power/supply/max77705_charger.c
@@ -666,19 +666,15 @@ static int max77705_charger_probe(struct i2c_client *i2c)
NULL, max77705_chgin_irq,
IRQF_TRIGGER_NONE,
"chgin-irq", chg);
- if (ret) {
- dev_err_probe(dev, ret, "Failed to Request chgin IRQ\n");
+ if (ret)
goto destroy_wq;
- }
ret = devm_request_threaded_irq(dev, regmap_irq_get_virq(irq_data, MAX77705_AICL_I),
NULL, max77705_aicl_irq,
IRQF_TRIGGER_NONE,
"aicl-irq", chg);
- if (ret) {
- dev_err_probe(dev, ret, "Failed to Request aicl IRQ\n");
+ if (ret)
goto destroy_wq;
- }
ret = max77705_charger_enable(chg);
if (ret) {
--
2.51.0
More information about the Linux-mediatek
mailing list