summaryrefslogtreecommitdiff
path: root/nuttx/configs/amber/src/up_boot.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-02-28 07:14:37 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-02-28 07:14:37 -0600
commit3c73217003478af0e9680596e600fa50c61a21d8 (patch)
tree7ee34c7dbe4974859217a6542043db44fabea5ba /nuttx/configs/amber/src/up_boot.c
parent87994b585685fb695310d6ef01fcd3d55c6798bc (diff)
downloadnuttx-3c73217003478af0e9680596e600fa50c61a21d8.tar.gz
nuttx-3c73217003478af0e9680596e600fa50c61a21d8.tar.bz2
nuttx-3c73217003478af0e9680596e600fa50c61a21d8.zip
Rename all use of up_boardinitialize(). Should not use common microprocessing naming convention but rather the microprocessor-specific naming conventioni
Diffstat (limited to 'nuttx/configs/amber/src/up_boot.c')
-rw-r--r--nuttx/configs/amber/src/up_boot.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/configs/amber/src/up_boot.c b/nuttx/configs/amber/src/up_boot.c
index 94568fbce..b0b5656e8 100644
--- a/nuttx/configs/amber/src/up_boot.c
+++ b/nuttx/configs/amber/src/up_boot.c
@@ -1,7 +1,7 @@
/************************************************************************************
* configs/amber/src/up_boot.c
*
- * Copyright (C) 2011 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2011, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -50,7 +50,7 @@
#include "amber_internal.h"
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/************************************************************************************
@@ -62,16 +62,16 @@
************************************************************************************/
/************************************************************************************
- * Name: up_boardinitialize
+ * Name: atmega_boardinitialize
*
* Description:
* All ATMega architectures must provide the following entry point. This entry
- * point is called early in the intitialization -- after all memory has been
+ * point is called early in the initialization -- after all memory has been
* configured and mapped but before any devices have been initialized.
*
************************************************************************************/
-void up_boardinitialize(void)
+void atmega_boardinitialize(void)
{
/* Configure SSP chip selects if 1) at least one SSP is enabled, and 2) the weak
* function atmega_spiinitialize() has been brought into the link.