Re: [PATCH] gpiolib: acpi: Add missing IRQF_ONESHOT

2021-03-01 Thread Andy Shevchenko
On Mon, Mar 01, 2021 at 02:57:53PM +0100, Bartosz Golaszewski wrote: > On Thu, Feb 25, 2021 at 4:07 PM Andy Shevchenko > wrote: > > On Tue, Feb 23, 2021 at 01:51:53PM +0200, Andy Shevchenko wrote: > > > On Tue, Feb 23, 2021 at 04:35:58PM +0800, Yang Li wrote: > > > > fixed the following

Re: [PATCH] gpiolib: acpi: Add missing IRQF_ONESHOT

2021-03-01 Thread Bartosz Golaszewski
On Thu, Feb 25, 2021 at 4:07 PM Andy Shevchenko wrote: > > On Tue, Feb 23, 2021 at 01:51:53PM +0200, Andy Shevchenko wrote: > > On Tue, Feb 23, 2021 at 04:35:58PM +0800, Yang Li wrote: > > > fixed the following coccicheck: > > > ./drivers/gpio/gpiolib-acpi.c:176:7-27: ERROR: Threaded IRQ with no

Re: [PATCH] gpiolib: acpi: Add missing IRQF_ONESHOT

2021-02-25 Thread Andy Shevchenko
On Tue, Feb 23, 2021 at 01:51:53PM +0200, Andy Shevchenko wrote: > On Tue, Feb 23, 2021 at 04:35:58PM +0800, Yang Li wrote: > > fixed the following coccicheck: > > ./drivers/gpio/gpiolib-acpi.c:176:7-27: ERROR: Threaded IRQ with no > > primary handler requested without IRQF_ONESHOT > > > > Make

Re: [PATCH] gpiolib: acpi: Add missing IRQF_ONESHOT

2021-02-23 Thread Andy Shevchenko
On Tue, Feb 23, 2021 at 04:35:58PM +0800, Yang Li wrote: > fixed the following coccicheck: > ./drivers/gpio/gpiolib-acpi.c:176:7-27: ERROR: Threaded IRQ with no > primary handler requested without IRQF_ONESHOT > > Make sure threaded IRQs without a primary handler are always request > with

[PATCH] gpiolib: acpi: Add missing IRQF_ONESHOT

2021-02-23 Thread Yang Li
fixed the following coccicheck: ./drivers/gpio/gpiolib-acpi.c:176:7-27: ERROR: Threaded IRQ with no primary handler requested without IRQF_ONESHOT Make sure threaded IRQs without a primary handler are always request with IRQF_ONESHOT Reported-by: Abaci Robot Signed-off-by: Yang Li ---