[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5556e4f7-79b1-af02-7456-fac9800a173f@systec-electronic.com>
Date: Thu, 16 Jan 2025 10:52:43 +0100 (CET)
From: Andre Werner <andre.werner@...tec-electronic.com>
To: Jiri Slaby <jirislaby@...nel.org>
cc: Andre Werner <andre.werner@...tec-electronic.com>,
gregkh@...uxfoundation.org, hvilleneuve@...onoff.com, andy@...nel.org,
linux-kernel@...r.kernel.org, linux-serial@...r.kernel.org,
lech.perczak@...lingroup.com
Subject: Re: [External Email] Re: [PATCH v1] serial: sc16is7xx: Extend IRQ
check for negative valus
On Thu, 16 Jan 2025, Jiri Slaby wrote:
> This is threaded weirdly.
Sorry for that.
>
> On 16. 01. 25, 10:32, Andre Werner wrote:
> > Fix the IRQ check to treat the negative values as No IRQ.
>
> Care to describe on what HW that can happen?
I have no example on that. In the previous thread it was mentioned that
it is not absolutely sure that the API is not called with negative values. Thus,
negative values shall also be treated as no IRQ.
>
> > Signed-off-by: Andre Werner <andre.werner@...tec-electronic.com>
> > ---
> > 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");
>
>
> --
> js
> suse labs
>
>
Regards,
André
Powered by blists - more mailing lists