summaryrefslogtreecommitdiff
path: root/arch/arm/mach-imx/mx1ads.c
diff options
context:
space:
mode:
authorSascha Hauer <sascha@saschahauer.de>2005-10-04 23:17:52 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2005-10-04 23:17:52 +0100
commit0a5b0aa8a331f4346b4b02bc653107304a6abdc5 (patch)
tree10476f4758b174a86a133493da992d6fb7adc636 /arch/arm/mach-imx/mx1ads.c
parentd78795b6930956fb66238d4d26242482d4a31470 (diff)
[ARM] 2950/1: i.MX gpio setup function
Patch from Sascha Hauer Current implementation of imx_gpio_mode does not allow to configure all alternate routing possibilities of the i.MX. With this patch every bit in the gpio setup registers has a corresponding bit in the gpio_mode parameter, so every routing should be possible now. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-imx/mx1ads.c')
-rw-r--r--arch/arm/mach-imx/mx1ads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/mx1ads.c b/arch/arm/mach-imx/mx1ads.c
index 5d25434d332c..a7511ddfe364 100644
--- a/arch/arm/mach-imx/mx1ads.c
+++ b/arch/arm/mach-imx/mx1ads.c
@@ -55,7 +55,7 @@ static void __init
mx1ads_init(void)
{
#ifdef CONFIG_LEDS
- imx_gpio_mode(GPIO_PORTA | GPIO_OUT | GPIO_GPIO | 2);
+ imx_gpio_mode(GPIO_PORTA | GPIO_OUT | 2);
#endif
platform_add_devices(devices, ARRAY_SIZE(devices));
}