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

@ -1 +1 @@
Subproject commit 7a768453c1ca9602d668c79d45db141b74d5c215
Subproject commit 81e94b2e1d2831d590f07ef729e74a7b66922ac5

2
arch

@ -1 +1 @@
Subproject commit 89bca2d78b1fcf2292c1b049a9e8a1b6dfe173d5
Subproject commit 7eca3dcc8f3624c3e0fe383e1d3f047e3d8c4a83

@ -1 +1 @@
Subproject commit bcc35c55a98e42fa2e4cc4052468e24aa5c2d43f
Subproject commit 3b9c3d5ed2439cf85344999f986150d59d5a5972

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