diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2008-04-20 18:17:38 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2008-04-20 18:17:38 +0000 |
commit | b45ffe9b60be338b5a27101155f5fdd28a99f8eb (patch) | |
tree | 57a001505f68d3460617670cf9116870274f01b4 /target/linux/ixp4xx/patches-2.6.25/301-avila_led.patch | |
parent | 895b820b4211117f0dd77a6a68f6068f5a300f46 (diff) | |
download | master-187ad058-b45ffe9b60be338b5a27101155f5fdd28a99f8eb.tar.gz master-187ad058-b45ffe9b60be338b5a27101155f5fdd28a99f8eb.tar.bz2 master-187ad058-b45ffe9b60be338b5a27101155f5fdd28a99f8eb.zip |
add ixp4xx 2.6.25 patchset
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10891 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ixp4xx/patches-2.6.25/301-avila_led.patch')
-rw-r--r-- | target/linux/ixp4xx/patches-2.6.25/301-avila_led.patch | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/target/linux/ixp4xx/patches-2.6.25/301-avila_led.patch b/target/linux/ixp4xx/patches-2.6.25/301-avila_led.patch new file mode 100644 index 0000000000..181d6baad8 --- /dev/null +++ b/target/linux/ixp4xx/patches-2.6.25/301-avila_led.patch @@ -0,0 +1,48 @@ +Index: linux-2.6.24.2/include/asm-arm/arch-ixp4xx/avila.h +=================================================================== +--- linux-2.6.24.2.orig/include/asm-arm/arch-ixp4xx/avila.h ++++ linux-2.6.24.2/include/asm-arm/arch-ixp4xx/avila.h +@@ -36,4 +36,5 @@ + #define AVILA_PCI_INTC_PIN 9 + #define AVILA_PCI_INTD_PIN 8 + +- ++/* User LED */ ++#define AVILA_LED_USER_GPIO 3 +Index: linux-2.6.24.2/arch/arm/mach-ixp4xx/avila-setup.c +=================================================================== +--- linux-2.6.24.2.orig/arch/arm/mach-ixp4xx/avila-setup.c ++++ linux-2.6.24.2/arch/arm/mach-ixp4xx/avila-setup.c +@@ -174,10 +174,31 @@ static struct platform_device avila_eth[ + } + }; + ++#ifdef CONFIG_LEDS_IXP4XX ++static struct resource avila_led_resources[] = { ++ { ++ .name = "user", ++ .start = AVILA_LED_USER_GPIO, ++ .end = AVILA_LED_USER_GPIO, ++ .flags = IXP4XX_GPIO_LOW, ++ }, ++}; ++ ++static struct platform_device avila_leds = { ++ .name = "IXP4XX-GPIO-LED", ++ .id = -1, ++ .num_resources = ARRAY_SIZE(avila_led_resources), ++ .resource = avila_led_resources, ++}; ++#endif ++ + static struct platform_device *avila_devices[] __initdata = { + &avila_i2c_gpio, + &avila_flash, +- &avila_uart ++ &avila_uart, ++#ifdef CONFIG_LEDS_IXP4XX ++ &avila_leds, ++#endif + }; + + static struct platform_device *avila_eth_devices[] = { |