]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
gpiolib: remove unused variable
authorArnd Bergmann <arnd@arndb.de>
Tue, 30 May 2017 09:21:05 +0000 (11:21 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 31 May 2017 00:07:29 +0000 (02:07 +0200)
This was left behind by a cleanup patch:

drivers/gpio/gpiolib.c: In function 'gpiochip_irqchip_init_valid_mask':
drivers/gpio/gpiolib.c:1474:6: error: unused variable 'i' [-Werror=unused-variable]

Fixes: 923a654c186c ("gpiolib: Re-use bitmap_fill() instead of open coded loop")
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Reported-by: Colin King <colin.king@canonical.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpiolib.c

index be80970973267d2185abf9722a1fd36bb3eac262..62ffb4e293d21263e882b5d709823979ca179b30 100644 (file)
@@ -1471,8 +1471,6 @@ static struct gpio_chip *find_chip_by_name(const char *name)
 
 static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
 {
-       int i;
-
        if (!gpiochip->irq_need_valid_mask)
                return 0;