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
@@ -120,10 +120,10 @@
****************************************************************************/
/****************************************************************************
* Name: board_led_initialize
* Name: board_autoled_initialize
****************************************************************************/
void board_led_initialize(void)
void board_autoled_initialize(void)
{
/* Configure RX and TX LED GPIOs for output */
+1 -1
View File
@@ -72,6 +72,6 @@ void sam_boardinitialize(void)
#ifdef CONFIG_ARCH_LEDS
/* Configure on-board LEDs if LED support has been selected. */
board_led_initialize();
board_autoled_initialize();
#endif
}