Rename all use of up_boardinitialize(). Should not use common microprocessing naming convention but rather the microprocessor-specific naming conventioni

This commit is contained in:
Gregory Nutt
2015-02-28 07:14:37 -06:00
parent 696e99b69a
commit 503d2915c6
17 changed files with 98 additions and 98 deletions
+11
View File
@@ -179,6 +179,17 @@ extern uint32_t _ebss; /* End+1 of .bss */
#ifndef __ASSEMBLY__
/****************************************************************************
* Name: x86_boardinitialize
*
* Description:
* This function must be provided by the board-specific logic in the
* directory configs/<board-name>/src/.
*
****************************************************************************/
void x86_boardinitialize(void);
/* Defined in files with the same name as the function */
extern void up_boot(void);
+2 -2
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* arch/x86/src/qemu/qemu_lowsetup.c
*
* Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
* Copyright (C) 2011-2012, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -135,6 +135,6 @@ void up_lowsetup(void)
/* Now perform board-specific initializations */
up_boardinitialize();
x86_boardinitialize();
}