David Hendricks ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2364
-gerrit commit bc670498b9b8a7d4aabaaad48220f082eacb4445 Author: David Hendricks <[email protected]> Date: Mon Feb 11 19:05:36 2013 -0800 fix an error message in checkstack() The order of some printk arguments were reversed. Change-Id: I5e8f70b79050b92ebe8cfa5aae94b6cd1a5fd547 Signed-off-by: David Hendricks <[email protected]> --- src/lib/stack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/stack.c b/src/lib/stack.c index 0a6637f..1f9e009 100644 --- a/src/lib/stack.c +++ b/src/lib/stack.c @@ -31,7 +31,7 @@ int checkstack(void *top_of_stack, int core) if (stack[0] != 0xDEADBEEF){ printk(BIOS_ERR, "Stack overrun on CPU%d." "Increase stack from current %d bytes\n", - CONFIG_STACK_SIZE, core); + core, CONFIG_STACK_SIZE); return -1; } -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

