[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1261151943-11863-1-git-send-email-ext-jani.1.nikula@nokia.com>
Date: Fri, 18 Dec 2009 17:59:03 +0200
From: Jani Nikula <ext-jani.1.nikula@...ia.com>
To: akpm@...ux-foundation.org, david-b@...bell.net
Cc: linux-kernel@...r.kernel.org, ext-jani.1.nikula@...ia.com
Subject: [PATCH] gpiolib: fix poll(2) support reconfigure on sysfs polarity change
From: Jani Nikula <ext-jani.1.nikula@...ia.com>
Previously enabled poll(2) support on one edge was never reconfigured
when sysfs polarity change was triggered from kernel, because 'struct
device *dev' shadowed an earlier definition.
Found by sparse, which I should've run much earlier.
Signed-off-by: Jani Nikula <ext-jani.1.nikula@...ia.com>
---
drivers/gpio/gpiolib.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index a25ad28..350842a 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -858,8 +858,6 @@ int gpio_sysfs_set_active_low(unsigned gpio, int value)
desc = &gpio_desc[gpio];
if (test_bit(FLAG_EXPORT, &desc->flags)) {
- struct device *dev;
-
dev = class_find_device(&gpio_class, NULL, desc, match_export);
if (dev == NULL) {
status = -ENODEV;
--
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists