diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2013-10-01 04:45:42 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-10-01 04:49:39 -0400 |
commit | 85649711a8959f181b8b646bb985996736af97b8 (patch) | |
tree | 33d7ae6f4801cb7916ac1667db48e8a630d5a4d1 /arch | |
parent | a72be8b89eb97655ea9b474bc7d6306672a922c2 (diff) |
ARM: gemini: delete <mach/gpio.h>
The Gemini has no need of a <mach/gpio.h> header as this is only
used by the machine-local gpio.c gpiochip driver, which is also
only using the irq_to_gpio() macro. Delete the file, move the single
macro into the driver and remove the NEED_MACH_GPIO_H flag.
Cc: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/Kconfig | 1 | ||||
-rw-r--r-- | arch/arm/mach-gemini/gpio.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-gemini/include/mach/gpio.h | 20 |
3 files changed, 1 insertions, 22 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index c0ed4b2a7ca1..e4061de9999c 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -388,7 +388,6 @@ config ARCH_GEMINI | |||
388 | select ARCH_REQUIRE_GPIOLIB | 388 | select ARCH_REQUIRE_GPIOLIB |
389 | select ARCH_USES_GETTIMEOFFSET | 389 | select ARCH_USES_GETTIMEOFFSET |
390 | select CPU_FA526 | 390 | select CPU_FA526 |
391 | select NEED_MACH_GPIO_H | ||
392 | help | 391 | help |
393 | Support for the Cortina Systems Gemini family SoCs | 392 | Support for the Cortina Systems Gemini family SoCs |
394 | 393 | ||
diff --git a/arch/arm/mach-gemini/gpio.c b/arch/arm/mach-gemini/gpio.c index 70bfa571b24b..f8cb5710d6ee 100644 --- a/arch/arm/mach-gemini/gpio.c +++ b/arch/arm/mach-gemini/gpio.c | |||
@@ -21,9 +21,9 @@ | |||
21 | 21 | ||
22 | #include <mach/hardware.h> | 22 | #include <mach/hardware.h> |
23 | #include <mach/irqs.h> | 23 | #include <mach/irqs.h> |
24 | #include <mach/gpio.h> | ||
25 | 24 | ||
26 | #define GPIO_BASE(x) IO_ADDRESS(GEMINI_GPIO_BASE(x)) | 25 | #define GPIO_BASE(x) IO_ADDRESS(GEMINI_GPIO_BASE(x)) |
26 | #define irq_to_gpio(x) ((x) - GPIO_IRQ_BASE) | ||
27 | 27 | ||
28 | /* GPIO registers definition */ | 28 | /* GPIO registers definition */ |
29 | #define GPIO_DATA_OUT 0x0 | 29 | #define GPIO_DATA_OUT 0x0 |
diff --git a/arch/arm/mach-gemini/include/mach/gpio.h b/arch/arm/mach-gemini/include/mach/gpio.h deleted file mode 100644 index 40a0527bada7..000000000000 --- a/arch/arm/mach-gemini/include/mach/gpio.h +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | /* | ||
2 | * Gemini gpiolib specific defines | ||
3 | * | ||
4 | * Copyright (C) 2008-2009 Paulius Zaleckas <paulius.zaleckas@teltonika.lt> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #ifndef __MACH_GPIO_H__ | ||
13 | #define __MACH_GPIO_H__ | ||
14 | |||
15 | #include <mach/irqs.h> | ||
16 | |||
17 | #define gpio_to_irq(x) ((x) + GPIO_IRQ_BASE) | ||
18 | #define irq_to_gpio(x) ((x) - GPIO_IRQ_BASE) | ||
19 | |||
20 | #endif /* __MACH_GPIO_H__ */ | ||