summaryrefslogtreecommitdiff
path: root/nuttx/arch/mips/src/common/up_internal.h
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/arch/mips/src/common/up_internal.h
parentcafcbeb3a0d16b13048d14fa8ef75cce2a87f738 (diff)
downloadnuttx-ce7d02b55783779750eb4da036ad2185e7f7cf44.tar.gz
nuttx-ce7d02b55783779750eb4da036ad2185e7f7cf44.tar.bz2
nuttx-ce7d02b55783779750eb4da036ad2185e7f7cf44.zip
rename up_led*() functions to board_led_*()
Diffstat (limited to 'nuttx/arch/mips/src/common/up_internal.h')
-rw-r--r--nuttx/arch/mips/src/common/up_internal.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/arch/mips/src/common/up_internal.h b/nuttx/arch/mips/src/common/up_internal.h
index 0e7960c0f..3e9da3e2c 100644
--- a/nuttx/arch/mips/src/common/up_internal.h
+++ b/nuttx/arch/mips/src/common/up_internal.h
@@ -290,12 +290,12 @@ extern void up_usbuninitialize(void);
/* LEDs */
#ifdef CONFIG_ARCH_LEDS
-extern void up_ledon(int led);
-extern void up_ledoff(int led);
+extern void board_led_on(int led);
+extern void board_led_off(int led);
#else
-# define up_ledinit()
-# define up_ledon(led)
-# define up_ledoff(led)
+# define board_led_initialize()
+# define board_led_on(led)
+# define board_led_off(led)
#endif
#endif /* __ASSEMBLY__ */