Linux Serial subsystem development
 help / color / mirror / Atom feed
* [PATCH v2] serial: sc16is7xx: Extend IRQ check for negative values
@ 2025-01-17 17:18 Andre Werner
  2025-01-18  7:34 ` Greg KH
  2025-01-18 12:14 ` Maarten Brock
  0 siblings, 2 replies; 8+ messages in thread
From: Andre Werner @ 2025-01-17 17:18 UTC (permalink / raw)
  To: gregkh, jirislaby, hvilleneuve, andy
  Cc: linux-kernel, linux-serial, lech.perczak, Andre Werner

Fix the IRQ check to treat the negative values as No IRQ.

Signed-off-by: Andre Werner <andre.werner@systec-electronic.com>
---
V2:
There are no changes to the patch itself. The previous patch submission
had a very weird structure within the discussion thread:
https://lkml.org/lkml/2025/1/16/398
This is simply a new thread opened for better handling.
---
 drivers/tty/serial/sc16is7xx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/tty/serial/sc16is7xx.c b/drivers/tty/serial/sc16is7xx.c
index 7b51cdc274fd..560f45ed19ae 100644
--- a/drivers/tty/serial/sc16is7xx.c
+++ b/drivers/tty/serial/sc16is7xx.c
@@ -1561,7 +1561,7 @@ int sc16is7xx_probe(struct device *dev, const struct sc16is7xx_devtype *devtype,
 	/* Always ask for fixed clock rate from a property. */
 	device_property_read_u32(dev, "clock-frequency", &uartclk);
 
-	s->polling = !!irq;
+	s->polling = (irq <= 0);
 	if (s->polling)
 		dev_dbg(dev,
 			"No interrupt pin definition, falling back to polling mode\n");
-- 
2.48.0


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

end of thread, other threads:[~2025-01-19  8:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-17 17:18 [PATCH v2] serial: sc16is7xx: Extend IRQ check for negative values Andre Werner
2025-01-18  7:34 ` Greg KH
2025-01-18  8:41   ` Jiri Slaby
2025-01-18 19:28   ` [External Email] " Andre Werner
2025-01-19  6:48     ` Greg KH
2025-01-18 12:14 ` Maarten Brock
2025-01-18 17:20   ` [External Email] " Andre Werner
2025-01-19  8:00     ` Jiri Slaby

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