From: Krzysztof Wilczyński <hidden> Date: 2021-10-01 01:18:37
There is no need to call the dev_err() function directly to print a
custom message when handling an error from either the platform_get_irq()
or platform_get_irq_byname() functions as both are going to display an
appropriate error message in case of a failure.
This change is as per suggestions from Coccinelle, e.g.,
drivers/pci/controller/dwc/pcie-visconti.c:286:2-9: line 286 is redundant because platform_get_irq() already prints an error
Related:
https://lore.kernel.org/all/20210310131913.2802385-1-kw@linux.com/https://lore.kernel.org/all/20200802142601.1635926-1-kw@linux.com/
Signed-off-by: Krzysztof Wilczyński <redacted>
---
drivers/pci/controller/dwc/pcie-visconti.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
-----Original Message-----
From: Krzysztof Wilczyński [mailto:kw@linux.com]
Sent: Friday, October 1, 2021 10:16 AM
To: Bjorn Helgaas <bhelgaas@google.com>
Cc: Lorenzo Pieralisi <redacted>; iwamatsu nobuhiro(岩松 信洋 □SWC◯ACT)
[off-list ref]; linux-pci@vger.kernel.org; linux-arm-kernel@lists.infradead.org
Subject: [PATCH] PCI: visconti: Remove surplus dev_err() when using platform_get_irq_byname()
There is no need to call the dev_err() function directly to print a
custom message when handling an error from either the platform_get_irq()
or platform_get_irq_byname() functions as both are going to display an
appropriate error message in case of a failure.
This change is as per suggestions from Coccinelle, e.g.,
drivers/pci/controller/dwc/pcie-visconti.c:286:2-9: line 286 is redundant because platform_get_irq() already prints
an error
Related:
https://lore.kernel.org/all/20210310131913.2802385-1-kw@linux.com/https://lore.kernel.org/all/20200802142601.1635926-1-kw@linux.com/
Signed-off-by: Krzysztof Wilczyński <redacted>
---
drivers/pci/controller/dwc/pcie-visconti.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
Thanks for your patch.
Acked-by: Nobuhiro Iwamatsu <redacted>
From: Lorenzo Pieralisi <hidden> Date: 2021-10-05 09:01:48
On Fri, 1 Oct 2021 01:16:26 +0000, Krzysztof Wilczyński wrote:
There is no need to call the dev_err() function directly to print a
custom message when handling an error from either the platform_get_irq()
or platform_get_irq_byname() functions as both are going to display an
appropriate error message in case of a failure.
This change is as per suggestions from Coccinelle, e.g.,
drivers/pci/controller/dwc/pcie-visconti.c:286:2-9: line 286 is redundant because platform_get_irq() already prints an error
[...]