public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] soc: qcom: icc-bwmon: Remove unnecessary print function dev_err()
@ 2022-07-14  7:22 Yang Li
  2022-07-14  7:46 ` Krzysztof Kozlowski
  0 siblings, 1 reply; 2+ messages in thread
From: Yang Li @ 2022-07-14  7:22 UTC (permalink / raw)
  To: krzysztof.kozlowski
  Cc: agross, bjorn.andersson, konrad.dybcio, linux-arm-msm,
	linux-kernel, Yang Li, Abaci Robot

Eliminate the follow coccicheck warning:
./drivers/soc/qcom/icc-bwmon.c:349:2-9: line 349 is redundant because platform_get_irq() already prints an error

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/soc/qcom/icc-bwmon.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/soc/qcom/icc-bwmon.c b/drivers/soc/qcom/icc-bwmon.c
index bea3ea1de7a4..7f8aca533cd3 100644
--- a/drivers/soc/qcom/icc-bwmon.c
+++ b/drivers/soc/qcom/icc-bwmon.c
@@ -345,10 +345,8 @@ static int bwmon_probe(struct platform_device *pdev)
 	}
 
 	bwmon->irq = platform_get_irq(pdev, 0);
-	if (bwmon->irq < 0) {
-		dev_err(dev, "failed to acquire bwmon IRQ\n");
+	if (bwmon->irq < 0)
 		return bwmon->irq;
-	}
 
 	ret = devm_pm_opp_of_add_table(dev);
 	if (ret)
-- 
2.20.1.7.g153144c


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

* Re: [PATCH -next] soc: qcom: icc-bwmon: Remove unnecessary print function dev_err()
  2022-07-14  7:22 [PATCH -next] soc: qcom: icc-bwmon: Remove unnecessary print function dev_err() Yang Li
@ 2022-07-14  7:46 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 2+ messages in thread
From: Krzysztof Kozlowski @ 2022-07-14  7:46 UTC (permalink / raw)
  To: Yang Li
  Cc: agross, bjorn.andersson, konrad.dybcio, linux-arm-msm,
	linux-kernel, Abaci Robot

On 14/07/2022 09:22, Yang Li wrote:
> Eliminate the follow coccicheck warning:
> ./drivers/soc/qcom/icc-bwmon.c:349:2-9: line 349 is redundant because platform_get_irq() already prints an error
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>

This was reported by coccinelle, not a robot, so the tag is not appropriate.

This is an open source work and public collaboration. The "Reported-by"
usually means that the issue was reported to us, in some way, usually in
public. Can we see the report?
Otherwise adding non-public, non-verifiable reports is useless and
clutters our report-credit-system.


Best regards,
Krzysztof

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

end of thread, other threads:[~2022-07-14  7:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-14  7:22 [PATCH -next] soc: qcom: icc-bwmon: Remove unnecessary print function dev_err() Yang Li
2022-07-14  7:46 ` Krzysztof Kozlowski

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