commit | 02767cbd3d02572852bb25131b5a4f3e6a9022bc | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | Thu Aug 22 22:19:41 2019 +0200 |
committer | Tom Rini <trini@konsulko.com> | Mon Aug 26 11:46:27 2019 -0400 |
tree | 907edcbca5c10b9625fee15a284f06124f6d98f0 | |
parent | 4ad646fe759cfa5e3883b0c43c73e634e5beee17 [diff] |
cmd: gpio: remove redundant assignment The assigned value NULL is overwritten before being used. Remove the assignment. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
diff --git a/cmd/gpio.c b/cmd/gpio.c index 53366f3..eff36ab 100644 --- a/cmd/gpio.c +++ b/cmd/gpio.c
@@ -91,7 +91,7 @@ if (!gpio_name || !bank_name || !strncasecmp(gpio_name, bank_name, banklen)) { - const char *p = NULL; + const char *p; int offset; p = gpio_name + banklen;