diff mbox series

[net-next] net: dsa: b53: per-port interrupts are optional

Message ID 20200417183341.8375-1-f.fainelli@gmail.com
State Changes Requested
Delegated to: David Miller
Headers show
Series [net-next] net: dsa: b53: per-port interrupts are optional | expand

Commit Message

Florian Fainelli April 17, 2020, 6:33 p.m. UTC
Make use of platform_get_irq_byname_optional() to avoid printing
messages on the kernel console that interrupts cannot be found.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 drivers/net/dsa/b53/b53_srab.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Miller April 18, 2020, 10:50 p.m. UTC | #1
From: Florian Fainelli <f.fainelli@gmail.com>
Date: Fri, 17 Apr 2020 11:33:41 -0700

> Make use of platform_get_irq_byname_optional() to avoid printing
> messages on the kernel console that interrupts cannot be found.
> 
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>

Applied.
diff mbox series

Patch

diff --git a/drivers/net/dsa/b53/b53_srab.c b/drivers/net/dsa/b53/b53_srab.c
index 0a1be5259be0..1207c3095027 100644
--- a/drivers/net/dsa/b53/b53_srab.c
+++ b/drivers/net/dsa/b53/b53_srab.c
@@ -524,7 +524,7 @@  static void b53_srab_prepare_irq(struct platform_device *pdev)
 
 		port->num = i;
 		port->dev = dev;
-		port->irq = platform_get_irq_byname(pdev, name);
+		port->irq = platform_get_irq_byname_optional(pdev, name);
 		kfree(name);
 	}