From c1d1fd850ee7b8e52bd2ea5064fab68ac0c27098 Mon Sep 17 00:00:00 2001 From: Alexandru Gagniuc Date: Wed, 5 Feb 2014 01:10:08 -0600 Subject: cbfstool: Deserialize CBFS master header when reading image Rather than using [hn]to[nh] whenever accessing a member of the CBFS header, deserialize the header when opening the CBFS image. The header is no longer a pointer inside the CBFS buffer, but a separate struct, a copy of the original header in a host-friendly format. This kills more of the ntohl usage. Change-Id: I5f8a5818b9d5a2d1152b1906249c4a5847d02bac Signed-off-by: Alexandru Gagniuc Reviewed-on: http://review.coreboot.org/5121 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Ronald G. Minnich --- util/cbfstool/cbfstool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/cbfstool/cbfstool.c') diff --git a/util/cbfstool/cbfstool.c b/util/cbfstool/cbfstool.c index 1d93981d72..792dd91d64 100644 --- a/util/cbfstool/cbfstool.c +++ b/util/cbfstool/cbfstool.c @@ -436,7 +436,7 @@ static int cbfs_locate(void) } if (param.top_aligned) - address = address - ntohl(image.header->romsize); + address = address - image.header->romsize; cbfs_image_delete(&image); printf("0x%x\n", address); -- cgit v1.2.3