Furquan Shaikh (furquan@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14978
-gerrit
commit eb83bab05d73fcb539695b7e17cfd2906e7fab66 Author: Furquan Shaikh furquan@google.com Date: Thu May 26 14:41:02 2016 -0700
util/cbfstool: Include commonlib/helpers.h in common.h
This avoids re-declaring common macros like ARRAY_SIZE, MIN, MAX and ALIGN. Also removes the issues around including both files in any tool.
Also, fix comparison error in various files by replacing int with size_t.
Change-Id: I06c763e5dd1bec97e8335499468bbdb016eb28e5 Signed-off-by: Furquan Shaikh furquan@google.com --- util/cbfstool/cbfs_image.c | 2 +- util/cbfstool/common.c | 4 ++-- util/cbfstool/common.h | 7 +------ util/cbfstool/rmodule.c | 2 +- 4 files changed, 5 insertions(+), 10 deletions(-)
diff --git a/util/cbfstool/cbfs_image.c b/util/cbfstool/cbfs_image.c index 6ed2674..0e20c80 100644 --- a/util/cbfstool/cbfs_image.c +++ b/util/cbfstool/cbfs_image.c @@ -1251,7 +1251,7 @@ int cbfs_print_directory(struct cbfs_image *image)
int cbfs_print_parseable_directory(struct cbfs_image *image) { - int i; + size_t i; const char *header[] = { "Name", "Offset", diff --git a/util/cbfstool/common.c b/util/cbfstool/common.c index bbb6141..3093ba1 100644 --- a/util/cbfstool/common.c +++ b/util/cbfstool/common.c @@ -139,7 +139,7 @@ static struct {
uint32_t string_to_arch(const char *arch_string) { - int i; + size_t i; uint32_t ret = CBFS_ARCHITECTURE_UNKNOWN;
for (i = 0; i < ARRAY_SIZE(arch_names); i++) { @@ -154,7 +154,7 @@ uint32_t string_to_arch(const char *arch_string)
const char *arch_to_string(uint32_t a) { - int i; + size_t i; const char *ret = NULL;
for (i = 0; i < ARRAY_SIZE(arch_names); i++) { diff --git a/util/cbfstool/common.h b/util/cbfstool/common.h index ea6f3cf..d4b7021 100644 --- a/util/cbfstool/common.h +++ b/util/cbfstool/common.h @@ -22,17 +22,12 @@ #include <string.h> #include <assert.h>
+#include <commonlib/helpers.h> #include <console/console.h>
/* Endianess */ #include "swab.h"
-/* Helpers */ -#define ARRAY_SIZE(a) (int)(sizeof(a) / sizeof((a)[0])) -#define ALIGN(val, by) (((val) + (by)-1)&~((by)-1)) -#define MAX(x, y) ((x) > (y) ? (x) : (y)) -#define MIN(x, y) ((x) < (y) ? (x) : (y)) - #define IS_TOP_ALIGNED_ADDRESS(x) ((uint32_t)(x) > 0x80000000)
#define unused __attribute__((unused)) diff --git a/util/cbfstool/rmodule.c b/util/cbfstool/rmodule.c index da34eb5..07957cb 100644 --- a/util/cbfstool/rmodule.c +++ b/util/cbfstool/rmodule.c @@ -595,7 +595,7 @@ out: int rmodule_init(struct rmod_context *ctx, const struct buffer *elfin) { struct parsed_elf *pelf; - int i; + size_t i; int ret;
ret = -1;