[net-next,v2] net: ipa: Remove redundant dev_err()

Message ID 20221212071854.766878-1-tegongkang@gmail.com
State New
Headers
Series [net-next,v2] net: ipa: Remove redundant dev_err() |

Commit Message

Kang Minchul Dec. 12, 2022, 7:18 a.m. UTC
  Function dev_err() is redundant because platform_get_irq_byname()
already prints an error.

Also, platform_get_irq_byname() can't return 0 so ret <= 0
should be ret < 0.

Signed-off-by: Kang Minchul <tegongkang@gmail.com>
---
Changes in v2:
  - Annotate patch with net-next.
  - Remove unnecessary comparison with zero.

 drivers/net/ipa/gsi.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
  

Comments

Alex Elder Dec. 12, 2022, 1:36 p.m. UTC | #1
On 12/12/22 1:18 AM, Kang Minchul wrote:
> Function dev_err() is redundant because platform_get_irq_byname()
> already prints an error.
> 
> Also, platform_get_irq_byname() can't return 0 so ret <= 0
> should be ret < 0.
> 
> Signed-off-by: Kang Minchul <tegongkang@gmail.com>

Now that I've looked at this closely, it's not clear what
version of the code you are basing your patch on.

The current version of net-next/master, as well as the
current linus/master, do not include the message you
are removing.  This patch removed the message more than
a year ago:

   91306d1d131ee net: ipa: Remove useless error message

So at least the portion of your patch that removes the
message is unnecessary.

Meanwhile, it seems there is no need to check for a 0
return from platform_get_irq_byname(), but there is
no harm in doing so.

If you would like to send version 3 of this patch, which
would return what platform_get_irq_byname() returns if it
is less than 0 in gsi_irq_init(), I would be OK with that.

But please it on net-next/master.

Thanks.

					-Alex

> ---
> Changes in v2:
>    - Annotate patch with net-next.
>    - Remove unnecessary comparison with zero.
> 
>   drivers/net/ipa/gsi.c | 5 +----
>   1 file changed, 1 insertion(+), 4 deletions(-)
> 
> diff --git a/drivers/net/ipa/gsi.c b/drivers/net/ipa/gsi.c
> index 55226b264e3c..a4f19f7f188e 100644
> --- a/drivers/net/ipa/gsi.c
> +++ b/drivers/net/ipa/gsi.c
> @@ -1967,11 +1967,8 @@ int gsi_init(struct gsi *gsi, struct platform_device *pdev, bool prefetch,
>   
>   	/* Get the GSI IRQ and request for it to wake the system */
>   	ret = platform_get_irq_byname(pdev, "gsi");
> -	if (ret <= 0) {
> -		dev_err(gsi->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);
  
Kang Minchul Dec. 16, 2022, 7:59 p.m. UTC | #2
Thank you for your precious feedback.

> The current version of net-next/master, as well as the
> current linus/master, do not include the message you
> are removing.  This patch removed the message more than
> a year ago:
>
>    91306d1d131ee net: ipa: Remove useless error message
>
> So at least the portion of your patch that removes the
> message is unnecessary.

Yes, I think I mistakenly worked on the wrong branch..

> Meanwhile, it seems there is no need to check for a 0
> return from platform_get_irq_byname(), but there is
> no harm in doing so.
>
> If you would like to send version 3 of this patch, which
> would return what platform_get_irq_byname() returns if it
> is less than 0 in gsi_irq_init(), I would be OK with that.
>
> But please it on net-next/master.

Ok, I'll send v3 of this patch soon.
  

Patch

diff --git a/drivers/net/ipa/gsi.c b/drivers/net/ipa/gsi.c
index 55226b264e3c..a4f19f7f188e 100644
--- a/drivers/net/ipa/gsi.c
+++ b/drivers/net/ipa/gsi.c
@@ -1967,11 +1967,8 @@  int gsi_init(struct gsi *gsi, struct platform_device *pdev, bool prefetch,
 
 	/* Get the GSI IRQ and request for it to wake the system */
 	ret = platform_get_irq_byname(pdev, "gsi");
-	if (ret <= 0) {
-		dev_err(gsi->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);