summaryrefslogtreecommitdiff
path: root/nuttx/configs/avr32dev1/src
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/avr32dev1/src')
-rwxr-xr-xnuttx/configs/avr32dev1/src/avr32dev1_internal.h4
-rwxr-xr-xnuttx/configs/avr32dev1/src/up_boot.c6
-rwxr-xr-xnuttx/configs/avr32dev1/src/up_leds.c4
3 files changed, 7 insertions, 7 deletions
diff --git a/nuttx/configs/avr32dev1/src/avr32dev1_internal.h b/nuttx/configs/avr32dev1/src/avr32dev1_internal.h
index b0fedd751..0388c01b8 100755
--- a/nuttx/configs/avr32dev1/src/avr32dev1_internal.h
+++ b/nuttx/configs/avr32dev1/src/avr32dev1_internal.h
@@ -65,14 +65,14 @@
************************************************************************************/
/************************************************************************************
- * Name: avr32dev1_ledinitialize
+ * Name: up_ledinitialize
*
* Description:
* Configure on-board LEDs if LED support has been selected.
************************************************************************************/
#ifdef CONFIG_ARCH_LEDS
-extern void avr32dev1_ledinitialize(void);
+extern void up_ledinitialize(void);
#endif
#endif /* __ASSEMBLY__ */
diff --git a/nuttx/configs/avr32dev1/src/up_boot.c b/nuttx/configs/avr32dev1/src/up_boot.c
index f75cda398..b0eae956e 100755
--- a/nuttx/configs/avr32dev1/src/up_boot.c
+++ b/nuttx/configs/avr32dev1/src/up_boot.c
@@ -63,7 +63,7 @@
************************************************************************************/
/************************************************************************************
- * Name: at91uc3_boardinitialize
+ * Name: up_boardinitialize
*
* Description:
* All AVR32 architectures must provide the following entry point. This entry point
@@ -72,13 +72,13 @@
*
************************************************************************************/
-void at91uc3_boardinitialize(void)
+void up_boardinitialize(void)
{
/* Configure SPI chip selects */
/* Configure on-board LEDs if LED support has been selected. */
#ifdef CONFIG_ARCH_LEDS
- avr32dev1_ledinitialize();
+ up_ledinitialize();
#endif
}
diff --git a/nuttx/configs/avr32dev1/src/up_leds.c b/nuttx/configs/avr32dev1/src/up_leds.c
index 62ccd5a88..5118ccde6 100755
--- a/nuttx/configs/avr32dev1/src/up_leds.c
+++ b/nuttx/configs/avr32dev1/src/up_leds.c
@@ -100,10 +100,10 @@
****************************************************************************/
/****************************************************************************
- * Name: up_ledinit
+ * Name: up_ledinitialize
****************************************************************************/
-void up_ledinit(void)
+void up_ledinitialize(void)
{
# warning "Not implemented"
}