summaryrefslogtreecommitdiff
path: root/nuttx/configs/pic32mx7mmb
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-01-24 14:28:49 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-01-24 14:28:49 -0600
commitce7d02b55783779750eb4da036ad2185e7f7cf44 (patch)
tree8d1eebba9a1bb5c7942bcf89c617fff85df96045 /nuttx/configs/pic32mx7mmb
parentcafcbeb3a0d16b13048d14fa8ef75cce2a87f738 (diff)
downloadpx4-nuttx-ce7d02b55783779750eb4da036ad2185e7f7cf44.tar.gz
px4-nuttx-ce7d02b55783779750eb4da036ad2185e7f7cf44.tar.bz2
px4-nuttx-ce7d02b55783779750eb4da036ad2185e7f7cf44.zip
rename up_led*() functions to board_led_*()
Diffstat (limited to 'nuttx/configs/pic32mx7mmb')
-rw-r--r--nuttx/configs/pic32mx7mmb/src/up_leds.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/configs/pic32mx7mmb/src/up_leds.c b/nuttx/configs/pic32mx7mmb/src/up_leds.c
index 573565518..333ca0406 100644
--- a/nuttx/configs/pic32mx7mmb/src/up_leds.c
+++ b/nuttx/configs/pic32mx7mmb/src/up_leds.c
@@ -247,11 +247,11 @@ void pic32mx_setleds(uint8_t ledset)
#endif
/****************************************************************************
- * Name: up_ledon
+ * Name: board_led_on
****************************************************************************/
#ifdef CONFIG_ARCH_LEDS
-void up_ledon(int led)
+void board_led_on(int led)
{
if ((unsigned)led < LED_NVALUES)
{
@@ -261,11 +261,11 @@ void up_ledon(int led)
#endif
/****************************************************************************
- * Name: up_ledoff
+ * Name: board_led_off
****************************************************************************/
#ifdef CONFIG_ARCH_LEDS
-void up_ledoff(int led)
+void board_led_off(int led)
{
if ((unsigned)led < LED_NVALUES)
{