From d92ef29a6fa971d9e314e412cd9c09757906411a Mon Sep 17 00:00:00 2001 From: Mark Brown Date: Mon, 24 Oct 2011 23:59:21 +0200 Subject: [PATCH] h8300: Move gpio.h to gpio-internal.h The current h8300 GPIO implementation doesn't provide the standard GPIO API, and in fact provides only direction control rather than normal GPIO functionality. Currently this is only used by the platform interrupt implementation rather than by a range of drivers so in preparation for moving over to gpiolib move the header out of the way of the gpiolib header, allowing a default GPIO implementation to be provided. For actual use of these GPIOs with gpiolib a real driver would still need to be written but there appears to be no current need for this. Signed-off-by: Mark Brown Signed-off-by: Grant Likely --- arch/h8300/include/asm/{gpio.h => gpio-internal.h} | 0 arch/h8300/platform/h8300h/irq.c | 2 +- arch/h8300/platform/h8s/irq.c | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename arch/h8300/include/asm/{gpio.h => gpio-internal.h} (100%) diff --git a/arch/h8300/include/asm/gpio.h b/arch/h8300/include/asm/gpio-internal.h similarity index 100% rename from arch/h8300/include/asm/gpio.h rename to arch/h8300/include/asm/gpio-internal.h diff --git a/arch/h8300/platform/h8300h/irq.c b/arch/h8300/platform/h8300h/irq.c index e977345105d7..bc4f51bceef5 100644 --- a/arch/h8300/platform/h8300h/irq.c +++ b/arch/h8300/platform/h8300h/irq.c @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include const int __initdata h8300_saved_vectors[] = { diff --git a/arch/h8300/platform/h8s/irq.c b/arch/h8300/platform/h8s/irq.c index 8182f041f829..7b5f29febc07 100644 --- a/arch/h8300/platform/h8s/irq.c +++ b/arch/h8300/platform/h8s/irq.c @@ -14,7 +14,7 @@ #include #include #include -#include +#include #include /* saved vector list */