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:
Stefan Reinauer 2011-10-14 14:50:19 -07:00 committed by Patrick Georgi
parent f830752c87
commit 2d17299395
2 changed files with 1 additions and 2 deletions

View File

@ -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

View File

@ -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;