Rename board_led_on to board_autoled_on

This commit is contained in:
Gregory Nutt
2015-11-01 09:07:36 -06:00
parent 88c506d843
commit 78f19bbefb
102 changed files with 217 additions and 217 deletions
+2 -2
View File
@@ -239,10 +239,10 @@ void board_autoled_initialize(void)
}
/****************************************************************************
* Name: board_led_on
* Name: board_autoled_on
****************************************************************************/
void board_led_on(int led)
void board_autoled_on(int led)
{
led_setonoff(ON_BITS(g_ledbits[led]));
}
+1 -1
View File
@@ -237,7 +237,7 @@ void efm32_led_pminitialize(void)
int ret = pm_register(&g_ledscb);
if (ret != OK)
{
board_led_on(LED_ASSERTION);
board_autoled_on(LED_ASSERTION);
}
}
#endif /* CONFIG_PM */