Commit d303735c authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Linus Walleij

pinctrl: armada-37xx: remove an unused variable

This variable has never been used and can be removed to avoid a W=1 warning:

drivers/pinctrl/mvebu/pinctrl-armada-37xx.c:837:6: error: variable 'i' set but not used [-Werror,-Wunused-but-set-variable]
  837 |         int i = 0;

Fixes: 87466ccd ("pinctrl: armada-37xx: Add pin controller support for Armada 37xx")
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Message-ID: <20240322132205.906729-1-arnd@kernel.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 85dfe458
...@@ -834,8 +834,6 @@ static int armada_37xx_gpiochip_register(struct platform_device *pdev, ...@@ -834,8 +834,6 @@ static int armada_37xx_gpiochip_register(struct platform_device *pdev,
static int armada_37xx_add_function(struct armada_37xx_pmx_func *funcs, static int armada_37xx_add_function(struct armada_37xx_pmx_func *funcs,
int *funcsize, const char *name) int *funcsize, const char *name)
{ {
int i = 0;
if (*funcsize <= 0) if (*funcsize <= 0)
return -EOVERFLOW; return -EOVERFLOW;
...@@ -847,7 +845,6 @@ static int armada_37xx_add_function(struct armada_37xx_pmx_func *funcs, ...@@ -847,7 +845,6 @@ static int armada_37xx_add_function(struct armada_37xx_pmx_func *funcs,
return -EEXIST; return -EEXIST;
} }
funcs++; funcs++;
i++;
} }
/* append new unique function */ /* append new unique function */
......
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