Rename board_led_initialize to board_autoled_initiaize

This commit is contained in:
Gregory Nutt
2015-11-01 09:03:01 -06:00
parent d0c332b5c9
commit 88c506d843
136 changed files with 238 additions and 238 deletions
+2 -2
View File
@@ -354,11 +354,11 @@ static int led_pm_prepare(struct pm_callback_s *cb , enum pm_state_e pmstate)
****************************************************************************/
/****************************************************************************
* Name: board_led_initialize
* Name: board_autoled_initialize
****************************************************************************/
#ifdef CONFIG_ARCH_LEDS
void board_led_initialize(void)
void board_autoled_initialize(void)
{
/* Configure LED1-4 GPIOs for output */
+1 -1
View File
@@ -98,6 +98,6 @@ void stm32_boardinitialize(void)
/* Configure on-board LEDs if LED support has been selected. */
#ifdef CONFIG_ARCH_LEDS
board_led_initialize();
board_autoled_initialize();
#endif
}