Re: [PATCH] pinctrl: nomadik: remove an unused variable

2021-01-05 Thread Linus Walleij
On Wed, Dec 30, 2020 at 4:46 PM Arnd Bergmann wrote: > From: Arnd Bergmann > > A recent patch added a local variable twice: > > drivers/pinctrl/nomadik/pinctrl-nomadik.c:953:8: error: unused variable > 'wake' [-Werror,-Wunused-variable] > > Remove the unused outer declaration > > Fixes: f392503

Re: [PATCH] pinctrl: nomadik: remove an unused variable

2020-12-30 Thread Andrew Halaney
On Wed, Dec 30, 2020 at 04:46:17PM +0100, Arnd Bergmann wrote: > From: Arnd Bergmann > > A recent patch added a local variable twice: > > drivers/pinctrl/nomadik/pinctrl-nomadik.c:953:8: error: unused variable > 'wake' [-Werror,-Wunused-variable] > > Remove the unused outer declaration > > Fi

[PATCH] pinctrl: nomadik: remove an unused variable

2020-12-30 Thread Arnd Bergmann
From: Arnd Bergmann A recent patch added a local variable twice: drivers/pinctrl/nomadik/pinctrl-nomadik.c:953:8: error: unused variable 'wake' [-Werror,-Wunused-variable] Remove the unused outer declaration Fixes: f3925032d7fd ("pinctrl: nomadik: Use irq_has_action()") Signed-off-by: Arnd Be