On 3/16/21 4:41 AM, Jay Fang wrote:
From: Zihao Tang <tangzih...@hisilicon.com>

Fix the following coccicheck report:

drivers/net/ipa/gsi.c:1341:2-9:
line 1341 is redundant because platform_get_irq() already prints an error

Remove dev_err() messages after platform_get_irq_byname() failures.

Signed-off-by: Zihao Tang <tangzih...@hisilicon.com>
Signed-off-by: Jay Fang <f.fangj...@huawei.com>

The error message printed by platform_get_irq_byname()
does not indicate what the error (errno) is.  But in
practice we essentially won't get these errors, and
if we do the message from platform_get_irq() is
enough to know there's a problem of some kind.

Thanks for the patch.

Reviewed-by: Alex Elder <el...@linaro.org>

---
  drivers/net/ipa/gsi.c | 5 ++---
  1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ipa/gsi.c b/drivers/net/ipa/gsi.c
index 390d340..2119367 100644
--- a/drivers/net/ipa/gsi.c
+++ b/drivers/net/ipa/gsi.c
@@ -1337,10 +1337,9 @@ static int gsi_irq_init(struct gsi *gsi, struct 
platform_device *pdev)
        int ret;
ret = platform_get_irq_byname(pdev, "gsi");
-       if (ret <= 0) {
-               dev_err(dev, "DT error %d getting \"gsi\" IRQ property\n", ret);
+       if (ret <= 0)
                return ret ? : -EINVAL;
-       }
+
        irq = ret;
ret = request_irq(irq, gsi_isr, 0, "gsi", gsi);


Reply via email to