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

2
arch

@ -1 +1 @@
Subproject commit 848fedb13d7dca0bfcd85e3e302d0deea23e9ce0
Subproject commit 89bca2d78b1fcf2292c1b049a9e8a1b6dfe173d5

@ -1 +1 @@
Subproject commit 2ae6dba193311d26f3778c2624bf2190d300a72e
Subproject commit bcc35c55a98e42fa2e4cc4052468e24aa5c2d43f

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
/****************************************************************************