Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
* [PATCH -next] power: supply: Remove redundant dev_err_probe()
@ 2023-07-27  8:23 Ruan Jinjie
  2023-07-27 10:11 ` AngeloGioacchino Del Regno
  0 siblings, 1 reply; 2+ messages in thread
From: Ruan Jinjie @ 2023-07-27  8:23 UTC (permalink / raw)
  To: sre, matthias.bgg, angelogioacchino.delregno, agross, andersson,
	konrad.dybcio, linux-pm, linux-arm-kernel, linux-mediatek,
	linux-arm-msm
  Cc: ruanjinjie

There is no need to call the dev_err_probe() function directly to print
a custom message when handling an error from platform_get_irq_byname()
function as it is going to display an appropriate error message
in case of a failure.

Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com>
---
 drivers/power/supply/mt6370-charger.c       | 4 +---
 drivers/power/supply/qcom_pmi8998_charger.c | 3 +--
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/power/supply/mt6370-charger.c b/drivers/power/supply/mt6370-charger.c
index f27dae5043f5..571cf00dde07 100644
--- a/drivers/power/supply/mt6370-charger.c
+++ b/drivers/power/supply/mt6370-charger.c
@@ -849,9 +849,7 @@ static int mt6370_chg_init_irq(struct mt6370_priv *priv)
 		ret = platform_get_irq_byname(to_platform_device(priv->dev),
 					      mt6370_chg_irqs[i].name);
 		if (ret < 0)
-			return dev_err_probe(priv->dev, ret,
-					     "Failed to get irq %s\n",
-					     mt6370_chg_irqs[i].name);
+			return ret;
 
 		priv->irq_nums[i] = ret;
 		ret = devm_request_threaded_irq(priv->dev, ret, NULL,
diff --git a/drivers/power/supply/qcom_pmi8998_charger.c b/drivers/power/supply/qcom_pmi8998_charger.c
index d16c5ee17249..ce7392e7d8b8 100644
--- a/drivers/power/supply/qcom_pmi8998_charger.c
+++ b/drivers/power/supply/qcom_pmi8998_charger.c
@@ -922,8 +922,7 @@ static int smb2_init_irq(struct smb2_chip *chip, int *irq, const char *name,
 
 	irqnum = platform_get_irq_byname(to_platform_device(chip->dev), name);
 	if (irqnum < 0)
-		return dev_err_probe(chip->dev, irqnum,
-				     "Couldn't get irq %s byname\n", name);
+		return irqnum;
 
 	rc = devm_request_threaded_irq(chip->dev, irqnum, NULL, handler,
 				       IRQF_ONESHOT, name, chip);
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH -next] power: supply: Remove redundant dev_err_probe()
  2023-07-27  8:23 [PATCH -next] power: supply: Remove redundant dev_err_probe() Ruan Jinjie
@ 2023-07-27 10:11 ` AngeloGioacchino Del Regno
  0 siblings, 0 replies; 2+ messages in thread
From: AngeloGioacchino Del Regno @ 2023-07-27 10:11 UTC (permalink / raw)
  To: Ruan Jinjie, sre, matthias.bgg, agross, andersson, konrad.dybcio,
	linux-pm, linux-arm-kernel, linux-mediatek, linux-arm-msm

Il 27/07/23 10:23, Ruan Jinjie ha scritto:
> There is no need to call the dev_err_probe() function directly to print
> a custom message when handling an error from platform_get_irq_byname()
> function as it is going to display an appropriate error message
> in case of a failure.
> 
> Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com>

power: supply: Remove redundant dev_err_probe() for platform_get_irq_byname()

After clarifying the commit title,

Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-07-27 10:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-27  8:23 [PATCH -next] power: supply: Remove redundant dev_err_probe() Ruan Jinjie
2023-07-27 10:11 ` AngeloGioacchino Del Regno

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox