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/arm926ejs/at91/led.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'arch/arm/cpu/arm926ejs/at91') diff --git a/arch/arm/cpu/arm926ejs/at91/led.c b/arch/arm/cpu/arm926ejs/at91/led.c index 6bcfa7f2fd5..6e59c866758 100644 --- a/arch/arm/cpu/arm926ejs/at91/led.c +++ b/arch/arm/cpu/arm926ejs/at91/led.c @@ -29,36 +29,36 @@ #include #ifdef CONFIG_RED_LED -void red_LED_on(void) +void red_led_on(void) { at91_set_gpio_value(CONFIG_RED_LED, 1); } -void red_LED_off(void) +void red_led_off(void) { at91_set_gpio_value(CONFIG_RED_LED, 0); } #endif #ifdef CONFIG_GREEN_LED -void green_LED_on(void) +void green_led_on(void) { at91_set_gpio_value(CONFIG_GREEN_LED, 0); } -void green_LED_off(void) +void green_led_off(void) { at91_set_gpio_value(CONFIG_GREEN_LED, 1); } #endif #ifdef CONFIG_YELLOW_LED -void yellow_LED_on(void) +void yellow_led_on(void) { at91_set_gpio_value(CONFIG_YELLOW_LED, 0); } -void yellow_LED_off(void) +void yellow_led_off(void) { at91_set_gpio_value(CONFIG_YELLOW_LED, 1); } -- cgit v1.2.3