Rename arch_nshinitialize() to board_app_initialize()

This commit is contained in:
Gregory Nutt
2015-03-31 10:21:31 -06:00
parent 7b3761f4ea
commit 103a17d4f1
114 changed files with 299 additions and 395 deletions
+4 -2
View File
@@ -45,6 +45,8 @@
#include <syslog.h>
#include <errno.h>
#include <nuttx/board.h>
#include "stm32.h"
#include "cloudctrl-internal.h"
@@ -101,14 +103,14 @@
****************************************************************************/
/****************************************************************************
* Name: nsh_archinitialize
* Name: board_app_initialize
*
* Description:
* Perform architecture specific initialization
*
****************************************************************************/
int nsh_archinitialize(void)
int board_app_initialize(void)
{
#if defined(HAVE_USBHOST) || defined(HAVE_W25)
int ret;
+2 -2
View File
@@ -72,8 +72,8 @@
int usbmsc_archinitialize(void)
{
/* If system/usbmsc is built as an NSH command, then SD slot should
* already have been initized in nsh_archinitialize() (see up_nsh.c). In
* this case, there is nothing further to be done here.
* already have been initized in board_app_initialize() (see stm32_nsh.c).
* In this case, there is nothing further to be done here.
*/
#ifndef CONFIG_NSH_BUILTIN_APPS