diff options
author | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2014-02-02 22:37:28 -0600 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2014-02-04 19:37:48 +0100 |
commit | 35850ae88e0be8d05ab672d5badcd89ab8006389 (patch) | |
tree | a98922c5b96094848abcff0308ffd126667d44bd /util/cbfstool/cbfs.h | |
parent | 2bdc0d0bd6de826588d5ceda139d021922db5e48 (diff) |
cbfstool: Eliminate global variable "arch"
Now that unused functions have been removed, the global "arch" is only
used in very few places. We can pack "arch" in the "param" structure
and pass it down to where it is actually used.
Change-Id: I255d1e2bc6b5ead91b6b4e94a0202523c4ab53dc
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-on: http://review.coreboot.org/5105
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'util/cbfstool/cbfs.h')
-rw-r--r-- | util/cbfstool/cbfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/cbfstool/cbfs.h b/util/cbfstool/cbfs.h index 92dd84ae84..9a5af5b3b1 100644 --- a/util/cbfstool/cbfs.h +++ b/util/cbfstool/cbfs.h @@ -129,6 +129,7 @@ uint32_t get_cbfs_compression(const char *name, uint32_t unknown); /* elfheaders.c */ int elf_headers(const struct buffer *pinput, + uint32_t arch, Elf64_Ehdr *ehdr, Elf64_Phdr **pphdr, Elf64_Shdr **pshdr); |