summaryrefslogtreecommitdiff
path: root/nuttx/configs/spark/include/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/spark/include/board.h')
-rw-r--r--nuttx/configs/spark/include/board.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/configs/spark/include/board.h b/nuttx/configs/spark/include/board.h
index 153c2a67a..c9974bf98 100644
--- a/nuttx/configs/spark/include/board.h
+++ b/nuttx/configs/spark/include/board.h
@@ -223,7 +223,7 @@ extern "C"
************************************************************************************/
/************************************************************************************
- * Name: up_ledinit, up_setled, and up_setleds
+ * Name: board_led_initialize, up_setled, and up_setleds
*
* Description:
* If CONFIG_ARCH_LEDS is defined, then NuttX will control the on-board LEDs. If
@@ -233,8 +233,8 @@ extern "C"
************************************************************************************/
#ifndef CONFIG_ARCH_LEDS
-#undef up_ledinit // Remove macro definition to reuse name
-void up_ledinit(void);
+#undef board_led_initialize // Remove macro definition to reuse name
+void board_led_initialize(void);
void up_setled(int led, bool ledon);
void up_setleds(uint8_t ledset, uint8_t led_states_set);
#endif