From fdfd89f21326f13a279b37abfa05313434d48ac9 Mon Sep 17 00:00:00 2001 From: Hung-Te Lin Date: Wed, 27 Feb 2013 16:38:38 +0800 Subject: selfboot: Report correct entry point address in debug message. Entry point in payload segment header is a 64 bit integer (ntohll). The debug message is currently reading that as a 32 bit integer (which will produce 00000000 for most platforms). Change-Id: I931072bbb82c099ce7fae04f15c8a35afa02e510 Signed-off-by: Hung-Te Lin Reviewed-on: http://review.coreboot.org/2535 Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) --- src/lib/selfboot.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib/selfboot.c b/src/lib/selfboot.c index 56124da317..d64ba4cb92 100644 --- a/src/lib/selfboot.c +++ b/src/lib/selfboot.c @@ -346,7 +346,8 @@ static int build_self_segment_list( break; case PAYLOAD_SEGMENT_ENTRY: - printk(BIOS_DEBUG, " Entry Point 0x%p\n", (void *) ntohl((u32) segment->load_addr)); + printk(BIOS_DEBUG, " Entry Point 0x%p\n", + (void *)(intptr_t)ntohll(segment->load_addr)); *entry = ntohll(segment->load_addr); /* Per definition, a payload always has the entry point * as last segment. Thus, we use the occurence of the -- cgit v1.2.3