public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4] serial: sc16is7xx: Fix IRQ number check behavior
@ 2025-01-21  7:18 Andre Werner
  2025-01-21  8:42 ` Jiri Slaby
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Andre Werner @ 2025-01-21  7:18 UTC (permalink / raw)
  To: gregkh, jirislaby, hvilleneuve, andy
  Cc: linux-kernel, linux-serial, lech.perczak, Maarten.Brock,
	Andre Werner

The logical meaning of the previous version is wrong due to a typo.

If the IRQ equals 0, no interrupt pin is available and polling mode
shall be used.

Additionally, this fix adds a check for IRQ < 0 to increase robustness,
because documentation still says that negative IRQ values cannot be
absolutely ruled-out.

Fixes: 104c1b9dde9d859dd01bd2d ("serial: sc16is7xx: Add polling mode if no IRQ pin is available")

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://lore.kernel.org/all/20250116093203.460215-1-andre.werner@systec-electronic.com/
This is simply a new thread opened for better handling.
V3:
Add Fixes tag and update commit message description.
V4:
Rephrase commit message.
---
 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] 6+ messages in thread

* Re: [PATCH v4] serial: sc16is7xx: Fix IRQ number check behavior
  2025-01-21  7:18 [PATCH v4] serial: sc16is7xx: Fix IRQ number check behavior Andre Werner
@ 2025-01-21  8:42 ` Jiri Slaby
  2025-01-21 10:23 ` Maarten Brock
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Jiri Slaby @ 2025-01-21  8:42 UTC (permalink / raw)
  To: Andre Werner, gregkh, hvilleneuve, andy
  Cc: linux-kernel, linux-serial, lech.perczak, Maarten.Brock

On 21. 01. 25, 8:18, Andre Werner wrote:
> The logical meaning of the previous version is wrong due to a typo.
> 
> If the IRQ equals 0, no interrupt pin is available and polling mode
> shall be used.
> 
> Additionally, this fix adds a check for IRQ < 0 to increase robustness,
> because documentation still says that negative IRQ values cannot be
> absolutely ruled-out.
> 
> Fixes: 104c1b9dde9d859dd01bd2d ("serial: sc16is7xx: Add polling mode if no IRQ pin is available")
> 
> Signed-off-by: Andre Werner <andre.werner@systec-electronic.com>

Reviewed-by: Jiri Slaby <jirislaby@kernel.org>

-- 
js
suse labs

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

* RE: [PATCH v4] serial: sc16is7xx: Fix IRQ number check behavior
  2025-01-21  7:18 [PATCH v4] serial: sc16is7xx: Fix IRQ number check behavior Andre Werner
  2025-01-21  8:42 ` Jiri Slaby
@ 2025-01-21 10:23 ` Maarten Brock
  2025-01-21 13:33 ` Andy Shevchenko
  2025-02-04 13:42 ` Greg KH
  3 siblings, 0 replies; 6+ messages in thread
From: Maarten Brock @ 2025-01-21 10:23 UTC (permalink / raw)
  To: Andre Werner, gregkh@linuxfoundation.org, jirislaby@kernel.org,
	hvilleneuve@dimonoff.com, andy@kernel.org
  Cc: linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org,
	lech.perczak@camlingroup.com

> From: Andre Werner <andre.werner@systec-electronic.com>
> 
> The logical meaning of the previous version is wrong due to a typo.
> 
> If the IRQ equals 0, no interrupt pin is available and polling mode
> shall be used.
> 
> Additionally, this fix adds a check for IRQ < 0 to increase robustness,
> because documentation still says that negative IRQ values cannot be
> absolutely ruled-out.
> 
> Fixes: 104c1b9dde9d859dd01bd2d ("serial: sc16is7xx: Add polling mode if no IRQ
> pin is available")
> 
> Signed-off-by: Andre Werner <andre.werner@systec-electronic.com>

Reviewed-by: Maarten Brock <maarten.brock@sttls.nl>

Maarten

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

* Re: [PATCH v4] serial: sc16is7xx: Fix IRQ number check behavior
  2025-01-21  7:18 [PATCH v4] serial: sc16is7xx: Fix IRQ number check behavior Andre Werner
  2025-01-21  8:42 ` Jiri Slaby
  2025-01-21 10:23 ` Maarten Brock
@ 2025-01-21 13:33 ` Andy Shevchenko
  2025-01-21 14:24   ` Hugo Villeneuve
  2025-02-04 13:42 ` Greg KH
  3 siblings, 1 reply; 6+ messages in thread
From: Andy Shevchenko @ 2025-01-21 13:33 UTC (permalink / raw)
  To: Andre Werner
  Cc: gregkh, jirislaby, hvilleneuve, linux-kernel, linux-serial,
	lech.perczak, Maarten.Brock

On Tue, Jan 21, 2025 at 08:18:19AM +0100, Andre Werner wrote:
> The logical meaning of the previous version is wrong due to a typo.
> 
> If the IRQ equals 0, no interrupt pin is available and polling mode
> shall be used.
> 
> Additionally, this fix adds a check for IRQ < 0 to increase robustness,
> because documentation still says that negative IRQ values cannot be
> absolutely ruled-out.
> 
> Fixes: 104c1b9dde9d859dd01bd2d ("serial: sc16is7xx: Add polling mode if no IRQ pin is available")

> 

This blank line is redundant (should not exists in the tag block).
Otherwise LGTM, thanks for pursuing this!
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

-- 
With Best Regards,
Andy Shevchenko



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

* Re: [PATCH v4] serial: sc16is7xx: Fix IRQ number check behavior
  2025-01-21 13:33 ` Andy Shevchenko
@ 2025-01-21 14:24   ` Hugo Villeneuve
  0 siblings, 0 replies; 6+ messages in thread
From: Hugo Villeneuve @ 2025-01-21 14:24 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Andre Werner, gregkh, jirislaby, hvilleneuve, linux-kernel,
	linux-serial, lech.perczak, Maarten.Brock

On Tue, 21 Jan 2025 15:33:30 +0200
Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:

> On Tue, Jan 21, 2025 at 08:18:19AM +0100, Andre Werner wrote:
> > The logical meaning of the previous version is wrong due to a typo.
> > 
> > If the IRQ equals 0, no interrupt pin is available and polling mode
> > shall be used.
> > 
> > Additionally, this fix adds a check for IRQ < 0 to increase robustness,
> > because documentation still says that negative IRQ values cannot be
> > absolutely ruled-out.
> > 
> > Fixes: 104c1b9dde9d859dd01bd2d ("serial: sc16is7xx: Add polling mode if no IRQ pin is available")
> 
> > 
> 
> This blank line is redundant (should not exists in the tag block).
> Otherwise LGTM, thanks for pursuing this!
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Reviewed-by: Hugo Villeneuve <hvilleneuve@dimonoff.com>

-- 
Hugo Villeneuve

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

* Re: [PATCH v4] serial: sc16is7xx: Fix IRQ number check behavior
  2025-01-21  7:18 [PATCH v4] serial: sc16is7xx: Fix IRQ number check behavior Andre Werner
                   ` (2 preceding siblings ...)
  2025-01-21 13:33 ` Andy Shevchenko
@ 2025-02-04 13:42 ` Greg KH
  3 siblings, 0 replies; 6+ messages in thread
From: Greg KH @ 2025-02-04 13:42 UTC (permalink / raw)
  To: Andre Werner
  Cc: jirislaby, hvilleneuve, andy, linux-kernel, linux-serial,
	lech.perczak, Maarten.Brock

On Tue, Jan 21, 2025 at 08:18:19AM +0100, Andre Werner wrote:
> The logical meaning of the previous version is wrong due to a typo.
> 
> If the IRQ equals 0, no interrupt pin is available and polling mode
> shall be used.
> 
> Additionally, this fix adds a check for IRQ < 0 to increase robustness,
> because documentation still says that negative IRQ values cannot be
> absolutely ruled-out.
> 
> Fixes: 104c1b9dde9d859dd01bd2d ("serial: sc16is7xx: Add polling mode if no IRQ pin is available")

Nit, this should be:
	Fixes: 104c1b9dde9d ("serial: sc16is7xx: Add polling mode if no IRQ pin is available")

I'll go fix up the fixes line...

thanks,

greg k-h

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

end of thread, other threads:[~2025-02-04 13:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-21  7:18 [PATCH v4] serial: sc16is7xx: Fix IRQ number check behavior Andre Werner
2025-01-21  8:42 ` Jiri Slaby
2025-01-21 10:23 ` Maarten Brock
2025-01-21 13:33 ` Andy Shevchenko
2025-01-21 14:24   ` Hugo Villeneuve
2025-02-04 13:42 ` Greg KH

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