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/lowlevel_init.S | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'arch/arm/cpu/arm920t/ep93xx/lowlevel_init.S') 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 -- cgit