diff options
author | John Crispin <john@openwrt.org> | 2011-07-03 18:51:59 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-07-03 18:51:59 +0000 |
commit | 349e97f87939460050352725ff6c6be6962aa2ab (patch) | |
tree | 7556f537aea717db2b0d9087fff776210c500869 /target/linux/at91/patches/901-AT91-flexibity-default-leds-to-heartbeat.patch | |
parent | 2975f0aaf17e1d38f6f9eab57260c23ffba0545c (diff) | |
download | mtk-20170518-349e97f87939460050352725ff6c6be6962aa2ab.zip mtk-20170518-349e97f87939460050352725ff6c6be6962aa2ab.tar.gz mtk-20170518-349e97f87939460050352725ff6c6be6962aa2ab.tar.bz2 |
AT91: Add flexibity board support
The patch below adds AT91 Flexibity Connect board support.
Signed-off-by: Maxim Osipov <maxim.osipov@gmail.com>
SVN-Revision: 27412
Diffstat (limited to 'target/linux/at91/patches/901-AT91-flexibity-default-leds-to-heartbeat.patch')
-rw-r--r-- | target/linux/at91/patches/901-AT91-flexibity-default-leds-to-heartbeat.patch | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/target/linux/at91/patches/901-AT91-flexibity-default-leds-to-heartbeat.patch b/target/linux/at91/patches/901-AT91-flexibity-default-leds-to-heartbeat.patch new file mode 100644 index 0000000..de7a8dc --- /dev/null +++ b/target/linux/at91/patches/901-AT91-flexibity-default-leds-to-heartbeat.patch @@ -0,0 +1,62 @@ +Index: linux-2.6.39/arch/arm/mach-at91/board-flexibity.c +=================================================================== +--- linux-2.6.39.orig/arch/arm/mach-at91/board-flexibity.c 2011-06-17 11:02:11.335016002 +0100 ++++ linux-2.6.39/arch/arm/mach-at91/board-flexibity.c 2011-06-17 11:02:20.395016002 +0100 +@@ -96,49 +96,49 @@ + .name = "usb1:green", + .gpio = AT91_PIN_PA12, + .active_low = 1, +- .default_trigger = "default-on", ++ .default_trigger = "heartbeat", + }, + { + .name = "usb1:red", + .gpio = AT91_PIN_PA13, + .active_low = 1, +- .default_trigger = "default-on", ++ .default_trigger = "heartbeat", + }, + { + .name = "usb2:green", + .gpio = AT91_PIN_PB26, + .active_low = 1, +- .default_trigger = "default-on", ++ .default_trigger = "heartbeat", + }, + { + .name = "usb2:red", + .gpio = AT91_PIN_PB27, + .active_low = 1, +- .default_trigger = "default-on", ++ .default_trigger = "heartbeat", + }, + { + .name = "usb3:green", + .gpio = AT91_PIN_PC8, + .active_low = 1, +- .default_trigger = "default-on", ++ .default_trigger = "heartbeat", + }, + { + .name = "usb3:red", + .gpio = AT91_PIN_PC6, + .active_low = 1, +- .default_trigger = "default-on", ++ .default_trigger = "heartbeat", + }, + { + .name = "usb4:green", + .gpio = AT91_PIN_PB4, + .active_low = 1, +- .default_trigger = "default-on", ++ .default_trigger = "heartbeat", + }, + { + .name = "usb4:red", + .gpio = AT91_PIN_PB5, + .active_low = 1, +- .default_trigger = "default-on", ++ .default_trigger = "heartbeat", + } + }; + |