cbfs_and_run_core() is not part of the API, make it static.
It's only used in cbfs_and_run.c Change-Id: Ibcfcefbeb0c5722eb3888f0d60127229a2badcf6 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/273 Reviewed-by: Patrick Georgi <patrick@georgi-clan.de> Tested-by: build bot (Jenkins)
This commit is contained in:
parent
f830752c87
commit
2d17299395
|
@ -19,7 +19,6 @@
|
|||
|
||||
#ifndef __ARCH_STAGES_H
|
||||
#define __ARCH_STAGES_H
|
||||
void cbfs_and_run_core(const char *filename, unsigned int ebp);
|
||||
void __attribute__((regparm(0))) copy_and_run(unsigned cpu_reset);
|
||||
void __attribute__((regparm(0))) copy_and_run_ap_code_in_car(unsigned ret_addr);
|
||||
#endif
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include <cbfs.h>
|
||||
#include <arch/stages.h>
|
||||
|
||||
void cbfs_and_run_core(const char *filename, unsigned ebp)
|
||||
static void cbfs_and_run_core(const char *filename, unsigned ebp)
|
||||
{
|
||||
u8 *dst;
|
||||
|
||||
|
|
Loading…
Reference in New Issue