summaryrefslogtreecommitdiff
path: root/util/cbfstool/cbfs-mkpayload.c
diff options
context:
space:
mode:
authorWerner Zeh <werner.zeh@siemens.com>2018-06-15 14:02:18 +0200
committerWerner Zeh <werner.zeh@siemens.com>2018-06-18 04:25:28 +0000
commita7835c462eacdcb30aa6a41b2e04d1650995e175 (patch)
tree078345e5d48a2b14bea0a3ddd0ef0a554ab0fac1 /util/cbfstool/cbfs-mkpayload.c
parentaea8eecded5b51964f72236ea116081123e4a49b (diff)
downloadcoreboot-a7835c462eacdcb30aa6a41b2e04d1650995e175.tar.xz
cbfstool: Use endian.h and functions from commonlib
The endian conversion function be32toh() is defined in src/include/endian.h, however this file is not used for cbfstool compilation. Currently the one provided by the host is used and if the host does not provide this endian.h file, the build will fail. However, we do have endian conversion functions in commonlib/endian.h which is available for cbfstool compilation. Switch from be32toh() to read_be32() in order to avoid relying on a host provided include file. We use functions from commonlib/endian.h already in cbfstool. Change-Id: I106274cf9c69e1849f848920d96a61188f895b36 Signed-off-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-on: https://review.coreboot.org/27116 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/cbfstool/cbfs-mkpayload.c')
-rw-r--r--util/cbfstool/cbfs-mkpayload.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/cbfstool/cbfs-mkpayload.c b/util/cbfstool/cbfs-mkpayload.c
index 6dc163433d..e26c530106 100644
--- a/util/cbfstool/cbfs-mkpayload.c
+++ b/util/cbfstool/cbfs-mkpayload.c
@@ -18,6 +18,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <commonlib/endian.h>
#include "elfparsing.h"
#include "common.h"
@@ -426,7 +427,7 @@ int parse_fit_to_payload(const struct buffer *input, struct buffer *output,
DEBUG("start: parse_fit_to_payload\n");
fdt_h = buffer_get(input);
- if (be32toh(fdt_h->magic) != FDT_HEADER_MAGIC) {
+ if (read_be32(&fdt_h->magic) != FDT_HEADER_MAGIC) {
INFO("Not a FIT payload.\n");
return -1;
}