Rename board_led_off to board_autoled_off

This commit is contained in:
Gregory Nutt
2015-11-01 09:10:40 -06:00
parent 8093def2c8
commit 2318038bbc
4 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -432,7 +432,7 @@ void board_autoled_on(int led);
#endif
/****************************************************************************
* Name: board_led_off
* Name: board_autoled_off
*
* Description:
* Set the LED configuration into the OFF condition for the state provided
@@ -457,9 +457,9 @@ void board_autoled_on(int led);
****************************************************************************/
#ifdef CONFIG_ARCH_LEDS
void board_led_off(int led);
void board_autoled_off(int led);
#else
# define board_led_off(led)
# define board_autoled_off(led)
#endif
/****************************************************************************