Re: [PATCH 03/17] input: tegra-kbc: drop use of IRQF_NO_SUSPEND flag

2015-10-26 Thread Dmitry Torokhov
On Mon, Oct 19, 2015 at 06:34:02PM +0100, Sudeep Holla wrote: > Hi Dmitry, > > On 05/10/15 11:24, Laxman Dewangan wrote: > > > >On Monday 21 September 2015 09:16 PM, Sudeep Holla wrote: > >> > >>diff --git a/drivers/input/keyboard/tegra-kbc.c > >>b/drivers/input/keyboard/tegra-kbc.c > >>index f97c

Re: [PATCH 03/17] input: tegra-kbc: drop use of IRQF_NO_SUSPEND flag

2015-10-19 Thread Sudeep Holla
Hi Dmitry, On 05/10/15 11:24, Laxman Dewangan wrote: On Monday 21 September 2015 09:16 PM, Sudeep Holla wrote: diff --git a/drivers/input/keyboard/tegra-kbc.c b/drivers/input/keyboard/tegra-kbc.c index f97c73bd14f8..5f5dbbd51991 100644 --- a/drivers/input/keyboard/tegra-kbc.c +++ b/drivers/in

Re: [PATCH 03/17] input: tegra-kbc: drop use of IRQF_NO_SUSPEND flag

2015-10-05 Thread Laxman Dewangan
On Monday 21 September 2015 09:16 PM, Sudeep Holla wrote: diff --git a/drivers/input/keyboard/tegra-kbc.c b/drivers/input/keyboard/tegra-kbc.c index f97c73bd14f8..5f5dbbd51991 100644 --- a/drivers/input/keyboard/tegra-kbc.c +++ b/drivers/input/keyboard/tegra-kbc.c @@ -705,7 +705,7 @@ static in

Re: [PATCH 03/17] input: tegra-kbc: drop use of IRQF_NO_SUSPEND flag

2015-10-04 Thread Thierry Reding
On Mon, Sep 21, 2015 at 04:46:59PM +0100, Sudeep Holla wrote: > The driver handles wakeup irq correctly using device_init_wakeup and > enable_irq_wake. There's no need to use IRQF_NO_SUSPEND while registering > the interrupt. > > This patch removes the use of IRQF_NO_SUSPEND flag. > > Cc: Laxman

[PATCH 03/17] input: tegra-kbc: drop use of IRQF_NO_SUSPEND flag

2015-09-21 Thread Sudeep Holla
The driver handles wakeup irq correctly using device_init_wakeup and enable_irq_wake. There's no need to use IRQF_NO_SUSPEND while registering the interrupt. This patch removes the use of IRQF_NO_SUSPEND flag. Cc: Laxman Dewangan Cc: Stephen Warren Cc: Thierry Reding Cc: linux-in...@vger.kerne