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/lowlevel_init.S | |
parent | 43de24fdc7f5715423441e6538a16afe2d4ad168 (diff) |
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/lowlevel_init.S')
-rw-r--r-- | arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S | 10 |
1 files changed, 5 insertions, 5 deletions
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 |