From 9816be9a2c0ba40b25d0cdd2c7ee558019932071 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Wed, 5 Sep 2007 01:47:21 +0000 Subject: [PATCH] the new multi-segment lar handling has an off-by-one error in the printk. Signed-off-by: Alex Beregszaszi Acked-by: Stefan Reinauer git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@488 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- arch/x86/stage1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/stage1.c b/arch/x86/stage1.c index 646d8c4c25..ac1a0e8410 100644 --- a/arch/x86/stage1.c +++ b/arch/x86/stage1.c @@ -182,7 +182,7 @@ void __attribute__((stdcall)) stage1_main(u32 bist) archive.len = *(u32 *)0xfffffff4; archive.start =(void *)(0UL-archive.len); newentry = load_file(&archive, filename); - printk("newentry is %p\n", newentry); + printk(BIOS_SPEW, "newentry is %p\n", newentry); if (newentry == (void *)-1) break; if (! entry)