summaryrefslogtreecommitdiff
path: root/src/mainboard/via/vt8454c/romstage.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-04-03 12:41:41 +0000
committerStefan Reinauer <stepan@openbios.org>2010-04-03 12:41:41 +0000
commitc65666f70d2b9885a7134c564784be2a49394f91 (patch)
tree5b845f39224d3c00e90225733d1282d9c729b831 /src/mainboard/via/vt8454c/romstage.c
parentbed872dedfeb3b3ce33c0ce715904887a729e76f (diff)
downloadcoreboot-c65666f70d2b9885a7134c564784be2a49394f91.tar.xz
remove more warnings
rename amd64_main to stage1_main.. copy src/mainboard/via/vt8454c/debug.c to src/lib/debug.c Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5352 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/via/vt8454c/romstage.c')
-rw-r--r--src/mainboard/via/vt8454c/romstage.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mainboard/via/vt8454c/romstage.c b/src/mainboard/via/vt8454c/romstage.c
index 0680fe1b2a..b133c6ad85 100644
--- a/src/mainboard/via/vt8454c/romstage.c
+++ b/src/mainboard/via/vt8454c/romstage.c
@@ -30,7 +30,6 @@
#include "console/console.c"
#include "lib/ramtest.c"
#include "northbridge/via/cx700/raminit.h"
-#include "cpu/x86/mtrr/earlymtrr.c"
#include "cpu/x86/bist.h"
#define DEACTIVATE_CAR 1
@@ -38,9 +37,8 @@
#include "cpu/x86/car/copy_and_run.c"
#include "pc80/udelay_io.c"
#include "lib/delay.c"
-#include "cpu/x86/lapic/boot_cpu.c"
#include "northbridge/via/cx700/cx700_early_smbus.c"
-#include "debug.c"
+#include "lib/debug.c"
#include "northbridge/via/cx700/cx700_early_serial.c"
#include "northbridge/via/cx700/raminit.c"
@@ -126,7 +124,8 @@ static void main(unsigned long bist)
copy_and_run(0);
}
-void amd64_main(unsigned long bist) {
+void stage1_main(unsigned long bist)
+{
main(bist);
}