Commit 2f9d9a85 authored by Nathan Chancellor's avatar Nathan Chancellor Committed by Linus Walleij

pinctrl: nomadik: Remove unused variable in nmk_gpio_dbg_show_one

Clang warns:

drivers/pinctrl/nomadik/pinctrl-nomadik.c:952:8: warning: unused
variable 'wake' [-Wunused-variable]
                bool wake;
                     ^
1 warning generated.

There were two wake declarations added to nmk_gpio_dbg_show_one when
converting it to use irq_has_action but only one is used within its
scope. Remove the unused one so there is no more warning.

Fixes: f3925032 ("pinctrl: nomadik: Use irq_has_action()")
Reported-by: default avatarArnd Bergmann <arnd@arndb.de>
Tested-by: default avatarAndrew Halaney <ajhalaney@gmail.com>
Reviewed-by: default avatarAndrew Halaney <ajhalaney@gmail.com>
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Reported-by: default avatarYe Bin <yebin10@huawei.com>
Signed-off-by: default avatarNathan Chancellor <natechancellor@gmail.com>
Link: https://lore.kernel.org/r/20201229204710.1129033-1-natechancellor@gmail.comSigned-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 92ff62a7
......@@ -949,7 +949,6 @@ static void nmk_gpio_dbg_show_one(struct seq_file *s,
} else {
int irq = chip->to_irq(chip, offset);
const int pullidx = pull ? 1 : 0;
bool wake;
int val;
static const char * const pulls[] = {
"none ",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment