rename up_led*() functions to board_led_*()

This commit is contained in:
Gregory Nutt
2014-01-24 14:28:49 -06:00
parent f797601f19
commit 42a86a9cba
139 changed files with 610 additions and 610 deletions
+4 -4
View File
@@ -129,7 +129,7 @@ void a1x_led_initialize(void)
}
/****************************************************************************
* Name: up_ledon
* Name: board_led_on
*
* Description:
* Select the "logical" ON state:
@@ -153,7 +153,7 @@ void a1x_led_initialize(void)
****************************************************************************/
#ifdef CONFIG_ARCH_LEDS
void up_ledon(int led)
void board_led_on(int led)
{
switch (led)
{
@@ -183,7 +183,7 @@ void up_ledon(int led)
#endif
/****************************************************************************
* Name: up_ledoff
* Name: board_led_off
*
* Description:
* Select the "logical" OFF state:
@@ -207,7 +207,7 @@ void up_ledon(int led)
****************************************************************************/
#ifdef CONFIG_ARCH_LEDS
void up_ledoff(int led)
void board_led_off(int led)
{
switch (led)
{