diff options
author | Jason Kridner <jkridner@beagleboard.org> | 2011-09-04 14:40:16 -0400 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-09-13 08:30:52 +0200 |
commit | 2d3be7c456f9d0bcfd4d4b0515aecd32d6a06037 (patch) | |
tree | 346a178e413eaa4b9a545366d4c0452bcbeef4fe /arch/arm/cpu/arm920t/ep93xx | |
parent | 43de24fdc7f5715423441e6538a16afe2d4ad168 (diff) | |
download | u-boot-2d3be7c456f9d0bcfd4d4b0515aecd32d6a06037.tar.gz u-boot-2d3be7c456f9d0bcfd4d4b0515aecd32d6a06037.tar.xz u-boot-2d3be7c456f9d0bcfd4d4b0515aecd32d6a06037.zip |
led: remove camel casing of led identifiers globally
Result of running the following command to address Wolfgang's
comment about camel case:
for file in `find . | grep '\.[chS]$'`; do perl -i -pe
's/(green|yellow|red|blue)_LED_(on|off)/$1_led_$2/g' $file; done
Discussion:
http://patchwork.ozlabs.org/patch/84988/
Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
Signed-off-by: Joel A Fernandes <agnel.joel@gmail.com>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'arch/arm/cpu/arm920t/ep93xx')
-rw-r--r-- | arch/arm/cpu/arm920t/ep93xx/led.c | 24 | ||||
-rw-r--r-- | arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S | 10 |
2 files changed, 17 insertions, 17 deletions
diff --git a/arch/arm/cpu/arm920t/ep93xx/led.c b/arch/arm/cpu/arm920t/ep93xx/led.c index 7e2c897757..0aefa7f1e5 100644 --- a/arch/arm/cpu/arm920t/ep93xx/led.c +++ b/arch/arm/cpu/arm920t/ep93xx/led.c @@ -45,22 +45,22 @@ inline void switch_LED_off(uint8_t led) saved_state[led] = STATUS_LED_OFF; } -void red_LED_on(void) +void red_led_on(void) { switch_LED_on(STATUS_LED_RED); } -void red_LED_off(void) +void red_led_off(void) { switch_LED_off(STATUS_LED_RED); } -void green_LED_on(void) +void green_led_on(void) { switch_LED_on(STATUS_LED_GREEN); } -void green_LED_off(void) +void green_led_off(void) { switch_LED_off(STATUS_LED_GREEN); } @@ -74,14 +74,14 @@ void __led_toggle(led_id_t mask) { if (STATUS_LED_RED == mask) { if (STATUS_LED_ON == saved_state[STATUS_LED_RED]) - red_LED_off(); + red_led_off(); else - red_LED_on(); + red_led_on(); } else if (STATUS_LED_GREEN == mask) { if (STATUS_LED_ON == saved_state[STATUS_LED_GREEN]) - green_LED_off(); + green_led_off(); else - green_LED_on(); + green_led_on(); } } @@ -89,13 +89,13 @@ void __led_set(led_id_t mask, int state) { if (STATUS_LED_RED == mask) { if (STATUS_LED_ON == state) - red_LED_on(); + red_led_on(); else - red_LED_off(); + red_led_off(); } else if (STATUS_LED_GREEN == mask) { if (STATUS_LED_ON == state) - green_LED_on(); + green_led_on(); else - green_LED_off(); + green_led_off(); } } diff --git a/arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S b/arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S index a20ec894be..f21e2372ed 100644 --- a/arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S +++ b/arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S @@ -34,8 +34,8 @@ lowlevel_init: str lr, [r1] /* Turn on both LEDs */ - bl red_LED_on - bl green_LED_on + bl red_led_on + bl green_led_on /* Configure flash wait states before we switch to the PLL */ bl flash_cfg @@ -44,14 +44,14 @@ lowlevel_init: bl pll_cfg /* Turn off the Green LED and leave the Red LED on */ - bl green_LED_off + bl green_led_off /* Setup SDRAM */ bl sdram_cfg /* Turn on Green LED, Turn off the Red LED */ - bl green_LED_on - bl red_LED_off + bl green_led_on + bl red_led_off /* FIXME: we use async mode for now */ mrc p15, 0, r0, c1, c0, 0 |