From 87f911a38d7964b50b3be20da5c06fab69a90576 Mon Sep 17 00:00:00 2001 From: Linus Walleij Date: Mon, 22 Aug 2011 08:44:18 +0100 Subject: [PATCH] ARM: 7043/1: mach-ixp2000: rename GPIO header The ixp2000 abuses the namespace by not implementing any generic GPIO nor gpiolib functions in it - just custom GPIO. Rename the header to for clarity. Cc: Lennert Buytenhek Signed-off-by: Linus Walleij Signed-off-by: Russell King --- arch/arm/mach-ixp2000/core.c | 2 ++ arch/arm/mach-ixp2000/include/mach/{gpio.h => gpio-ixp2000.h} | 4 ++-- arch/arm/mach-ixp2000/ixdp2x00.c | 1 + drivers/i2c/busses/i2c-ixp2000.c | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) rename arch/arm/mach-ixp2000/include/mach/{gpio.h => gpio-ixp2000.h} (95%) diff --git a/arch/arm/mach-ixp2000/core.c b/arch/arm/mach-ixp2000/core.c index e95c5e74238d..59a512672bb9 100644 --- a/arch/arm/mach-ixp2000/core.c +++ b/arch/arm/mach-ixp2000/core.c @@ -39,6 +39,8 @@ #include #include +#include + static DEFINE_SPINLOCK(ixp2000_slowport_lock); static unsigned long ixp2000_slowport_irq_flags; diff --git a/arch/arm/mach-ixp2000/include/mach/gpio.h b/arch/arm/mach-ixp2000/include/mach/gpio-ixp2000.h similarity index 95% rename from arch/arm/mach-ixp2000/include/mach/gpio.h rename to arch/arm/mach-ixp2000/include/mach/gpio-ixp2000.h index 4a88d2c33dac..af836c76c3f1 100644 --- a/arch/arm/mach-ixp2000/include/mach/gpio.h +++ b/arch/arm/mach-ixp2000/include/mach/gpio-ixp2000.h @@ -3,7 +3,7 @@ * * Copyright (C) 2002 Intel Corporation. * - * This program is free software, you can redistribute it and/or modify + * This program is free software, you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ @@ -11,7 +11,7 @@ /* * IXP2000 GPIO in/out, edge/level detection for IRQs: * IRQs are generated on Falling-edge, Rising-Edge, Level-low, Level-High - * or both Falling-edge and Rising-edge. + * or both Falling-edge and Rising-edge. * This must be called *before* the corresponding IRQ is registerd. * Use this instead of directly setting the GPIO registers. * GPIOs may also be used as GPIOs (e.g. for emulating i2c/smb) diff --git a/arch/arm/mach-ixp2000/ixdp2x00.c b/arch/arm/mach-ixp2000/ixdp2x00.c index f61506822ad8..634b6c852f68 100644 --- a/arch/arm/mach-ixp2000/ixdp2x00.c +++ b/arch/arm/mach-ixp2000/ixdp2x00.c @@ -41,6 +41,7 @@ #include #include +#include /************************************************************************* * IXDP2x00 IRQ Initialization diff --git a/drivers/i2c/busses/i2c-ixp2000.c b/drivers/i2c/busses/i2c-ixp2000.c index be9991bc2a74..c01e9519f6c1 100644 --- a/drivers/i2c/busses/i2c-ixp2000.c +++ b/drivers/i2c/busses/i2c-ixp2000.c @@ -35,7 +35,7 @@ #include #include /* Pick up IXP2000-specific bits */ -#include +#include static inline int ixp2000_scl_pin(void *data) { -- 2.45.2