Rename board_led_on to board_autoled_on

This commit is contained in:
Gregory Nutt
2015-11-01 09:07:46 -06:00
parent 148d5fcffd
commit 8093def2c8
3 changed files with 5 additions and 5 deletions
+1 -1
Submodule arch updated: 848fedb13d...89bca2d78b
+1 -1
Submodule configs updated: 2ae6dba193...bcc35c55a9
+3 -3
View File
@@ -397,7 +397,7 @@ void board_autoled_initialize(void);
#endif
/****************************************************************************
* Name: board_led_on
* Name: board_autoled_on
*
* Description:
* Set the LED configuration into the ON condition for the state provided
@@ -426,9 +426,9 @@ void board_autoled_initialize(void);
****************************************************************************/
#ifdef CONFIG_ARCH_LEDS
void board_led_on(int led);
void board_autoled_on(int led);
#else
# define board_led_on(led)
# define board_autoled_on(led)
#endif
/****************************************************************************