From 7fd834ad77f79fe0e8e9840238f18bdc088c97b6 Mon Sep 17 00:00:00 2001 From: Alexandre Courbot Date: Wed, 23 Jul 2014 23:56:53 +0900 Subject: [PATCH] gpio: remove useless check in gpiolib_sysfs_init() An iterator variable cannot be NULL in its loop. Reported-by: Julia Lawall Signed-off-by: Alexandre Courbot Signed-off-by: Linus Walleij --- drivers/gpio/gpiolib-sysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpio/gpiolib-sysfs.c b/drivers/gpio/gpiolib-sysfs.c index be45a9283c28..5f2150b619a7 100644 --- a/drivers/gpio/gpiolib-sysfs.c +++ b/drivers/gpio/gpiolib-sysfs.c @@ -804,7 +804,7 @@ static int __init gpiolib_sysfs_init(void) */ spin_lock_irqsave(&gpio_lock, flags); list_for_each_entry(chip, &gpio_chips, list) { - if (!chip || chip->exported) + if (chip->exported) continue; /* -- 2.20.1