From 2d3be7c456f9d0bcfd4d4b0515aecd32d6a06037 Mon Sep 17 00:00:00 2001 From: Jason Kridner Date: Sun, 4 Sep 2011 14:40:16 -0400 Subject: 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 Signed-off-by: Joel A Fernandes Signed-off-by: Sandeep Paulraj --- arch/arm/cpu/arm920t/ep93xx/led.c | 24 ++++++++++++------------ arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S | 10 +++++----- arch/arm/cpu/arm920t/start.S | 2 +- 3 files changed, 18 insertions(+), 18 deletions(-) (limited to 'arch/arm/cpu/arm920t') 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 diff --git a/arch/arm/cpu/arm920t/start.S b/arch/arm/cpu/arm920t/start.S index c3084208e1..8c5612c31e 100644 --- a/arch/arm/cpu/arm920t/start.S +++ b/arch/arm/cpu/arm920t/start.S @@ -277,7 +277,7 @@ clbss_l:str r2, [r0] /* clear loop... */ bne clbss_l bl coloured_LED_init - bl red_LED_on + bl red_led_on #endif /* -- cgit v1.2.1