]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
gpio: decouple the IOP GPIO driver from platform
authorLinus Walleij <linus.walleij@linaro.org>
Mon, 9 Sep 2013 13:00:40 +0000 (15:00 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 20 Sep 2013 21:04:28 +0000 (23:04 +0200)
This removes the only dependence between the IOP GPIO
driver and the GENERIC_GPIO header in <mach/gpio.h>
and its common implementation in the <asm/*> namespace
by copying the one constant it is using into the driver
file.

Cc: Lennert Buytenhek <kernel@wantstofly.org>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Mikael Pettersson <mikpe@it.uu.se>
Tested-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-iop.c

index 697de6dc49364fd62611c863ad60f76876b0c30a..d4a170dfe5048b55efc1fa188e77495d5a0c76ef 100644 (file)
@@ -16,8 +16,8 @@
 #include <linux/errno.h>
 #include <linux/gpio.h>
 #include <linux/export.h>
-#include <asm/hardware/iop3xx.h>
-#include <mach/gpio.h>
+
+#define IOP3XX_N_GPIOS 8
 
 void gpio_line_config(int line, int direction)
 {