[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CA+V-a8si1uD5FgmpRfjfQ9FnarCA0_Fn2SMKJfw4nVZ=4iui4Q@mail.gmail.com>
Date: Thu, 19 May 2022 05:58:38 +0100
From: "Lad, Prabhakar" <prabhakar.csengg@...il.com>
To: Dmitry Torokhov <dmitry.torokhov@...il.com>
Cc: Lad Prabhakar <prabhakar.mahadev-lad.rj@...renesas.com>,
linux-input@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>,
Linux-Renesas <linux-renesas-soc@...r.kernel.org>,
Phil Edworthy <phil.edworthy@...esas.com>,
Biju Das <biju.das.jz@...renesas.com>,
Geert Uytterhoeven <geert@...ux-m68k.org>
Subject: Re: [PATCH] Input: gpio-keys - Cancel delayed work only in case of GPIO
Hi Dmitry,
Thank you for the review.
On Wed, May 18, 2022 at 5:46 AM Dmitry Torokhov
<dmitry.torokhov@...il.com> wrote:
>
> Hi Lad,
>
> On Fri, May 13, 2022 at 02:25:00PM +0100, Lad Prabhakar wrote:
> > gpio_keys module can either accept gpios or interrupts. The module
> > initializes delayed work in case of gpios only and not for interrupts,
> > so make sure cancel_delayed_work_sync() is called only when bdata->gpiod
> > is true.
> ...
> > diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c
> > index d75a8b179a8a..ec9d50ddda42 100644
> > --- a/drivers/input/keyboard/gpio_keys.c
> > +++ b/drivers/input/keyboard/gpio_keys.c
> > @@ -133,7 +133,7 @@ static void gpio_keys_quiesce_key(void *data)
> > hrtimer_cancel(&bdata->release_timer);
> > if (bdata->debounce_use_hrtimer)
> > hrtimer_cancel(&bdata->debounce_timer);
> > - else
> > + else if (bdata->gpiod)
> > cancel_delayed_work_sync(&bdata->work);
>
> We already have a check for bdata->gpiod a couple lines above. I think
> the chunk should look like this:
>
> if (!bdata->gpiod)
> hrtimer_cancel(&bdata->release_timer);
> else if (bdata->debounce_use_hrtimer)
> hrtimer_cancel(&bdata->debounce_timer);
> else
> cancel_delayed_work_sync(&bdata->work);
>
> since we use debounce timer/work only when we deal with gpio-backed
> keys.
>
Agreed, will fix that in v2.
Cheers,
Prabhakar
Powered by blists - more mailing lists