summaryrefslogtreecommitdiff
path: root/nuttx/configs/sam3u-ek/src/up_leds.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/sam3u-ek/src/up_leds.c')
-rw-r--r--nuttx/configs/sam3u-ek/src/up_leds.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/nuttx/configs/sam3u-ek/src/up_leds.c b/nuttx/configs/sam3u-ek/src/up_leds.c
index 3a6d09a48..6418ac4ed 100644
--- a/nuttx/configs/sam3u-ek/src/up_leds.c
+++ b/nuttx/configs/sam3u-ek/src/up_leds.c
@@ -162,10 +162,10 @@ static void up_setleds(uint8_t state)
****************************************************************************/
/****************************************************************************
- * Name: up_ledinit
+ * Name: board_led_initialize
****************************************************************************/
-void up_ledinit(void)
+void board_led_initialize(void)
{
(void)sam_configgpio(GPIO_LED0);
(void)sam_configgpio(GPIO_LED1);
@@ -173,19 +173,19 @@ void up_ledinit(void)
}
/****************************************************************************
- * Name: up_ledon
+ * Name: board_led_on
****************************************************************************/
-void up_ledon(int led)
+void board_led_on(int led)
{
up_setleds(g_ledon[led & 7]);
}
/****************************************************************************
- * Name: up_ledoff
+ * Name: board_led_off
****************************************************************************/
-void up_ledoff(int led)
+void board_led_off(int led)
{
up_setleds(g_ledoff[led & 7]);
}