pinctrl: armada-37xx: remove an unused variable
authorArnd Bergmann <arnd@arndb.de>
Fri, 22 Mar 2024 13:21:43 +0000 (14:21 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 2 Apr 2024 12:27:13 +0000 (14:27 +0200)
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: 87466ccd9401 ("pinctrl: armada-37xx: Add pin controller support for Armada 37xx")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Message-ID: <20240322132205.906729-1-arnd@kernel.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/mvebu/pinctrl-armada-37xx.c

index c34719b7506da6af00e56021716cb58709a2c3ca..4c4ada06423d7242bb9f3ae86380257fbbdc328f 100644 (file)
@@ -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,
                                    int *funcsize, const char *name)
 {
-       int i = 0;
-
        if (*funcsize <= 0)
                return -EOVERFLOW;
 
@@ -847,7 +845,6 @@ static int armada_37xx_add_function(struct armada_37xx_pmx_func *funcs,
                        return -EEXIST;
                }
                funcs++;
-               i++;
        }
 
        /* append new unique function */