From e43f169769ccfd392ad4c18c455a38e9e5d357c0 Mon Sep 17 00:00:00 2001 From: stuge Date: Mon, 26 Jan 2009 00:19:36 +0000 Subject: Original v2 revision: 3900 flashrom: Forgot some things in r3899. Signed-off-by: Peter Stuge Acked-by: Peter Stuge git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@395 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- cbtable.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cbtable.c') diff --git a/cbtable.c b/cbtable.c index ddbb9cb..25c3ee2 100644 --- a/cbtable.c +++ b/cbtable.c @@ -197,17 +197,17 @@ int coreboot_init(void) } lb_table = find_lb_table(low_1MB, 0x00000, 0x1000); if (!lb_table) - lb_table = find_lb_table(low_1MB, 0xf0000, 1024 * 1024); + lb_table = find_lb_table(low_1MB, 0xf0000, 1024*1024); if (!lb_table) { printf("No coreboot table found.\n"); return -1; } addr = ((char *)lb_table) - ((char *)low_1MB); - printf_debug("Coreboot table found at %p.\n", lb_table); + printf_debug("coreboot table found at %p.\n", lb_table); rec = (struct lb_record *)(((char *)lb_table) + lb_table->header_bytes); last = (struct lb_record *)(((char *)rec) + lb_table->table_bytes); - printf_debug("Coreboot header(%d) checksum: %04x table(%d) checksum: %04x entries: %d\n", + printf_debug("coreboot header(%d) checksum: %04x table(%d) checksum: %04x entries: %d\n", lb_table->header_bytes, lb_table->header_checksum, lb_table->table_bytes, lb_table->table_checksum, lb_table->table_entries); -- cgit v1.2.1