Change the location of the function prototype for collect_sys_info() so that it both works for x86 and is the same location as

for the amd64 build.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>


git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@703 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Mark Cave-Ayland
2010-03-17 22:20:12 +00:00
committed by Mark Cave-Ayland
parent feee9b0fd5
commit 553344a5da
3 changed files with 2 additions and 1 deletions

View File

@@ -17,7 +17,6 @@
#include "relocate.h" #include "relocate.h"
void boot(void); void boot(void);
void collect_sys_info(struct sys_info *info);
static char intdict[256 * 1024]; static char intdict[256 * 1024];

View File

@@ -11,6 +11,7 @@
#endif #endif
void collect_multiboot_info(struct sys_info *); void collect_multiboot_info(struct sys_info *);
void collect_sys_info(struct sys_info *info);
void collect_sys_info(struct sys_info *info) void collect_sys_info(struct sys_info *info)
{ {

View File

@@ -10,6 +10,7 @@
#endif #endif
void collect_multiboot_info(struct sys_info *); void collect_multiboot_info(struct sys_info *);
void collect_sys_info(struct sys_info *info);
void collect_sys_info(struct sys_info *info) void collect_sys_info(struct sys_info *info)
{ {