summaryrefslogtreecommitdiffstats
path: root/util/cbfstool/elfheaders.c
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2014-03-05 12:01:36 -0600
committerAaron Durbin <adurbin@google.com>2014-03-13 05:28:07 +0100
commitaa8784c2d140c373b6edaf20192a9ed0669f0956 (patch)
treebadeff3162d3ab835136e44875846dc1c9e0d1bc /util/cbfstool/elfheaders.c
parenta983cea5b99686b9281893b980d701dd2f1bf35e (diff)
downloadcoreboot-aa8784c2d140c373b6edaf20192a9ed0669f0956.tar.gz
coreboot-aa8784c2d140c373b6edaf20192a9ed0669f0956.tar.bz2
coreboot-aa8784c2d140c373b6edaf20192a9ed0669f0956.zip
cbfstool: move iself() to eflheaders.c
The only user of iself() was in elfheaders.c. Move it there, and make it local to the compilation unit. Change-Id: I0d919ce372f6e2fce75885fb4fcba20d985979b3 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/5369 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Diffstat (limited to 'util/cbfstool/elfheaders.c')
-rw-r--r--util/cbfstool/elfheaders.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/util/cbfstool/elfheaders.c b/util/cbfstool/elfheaders.c
index 78c864fa5275..f9877477533c 100644
--- a/util/cbfstool/elfheaders.c
+++ b/util/cbfstool/elfheaders.c
@@ -121,6 +121,13 @@
* in the buffer struct.
*/
+
+static int iself(const void *input)
+{
+ const Elf32_Ehdr *ehdr = input;
+ return !memcmp(ehdr->e_ident, ELFMAG, 4);
+}
+
/* Get the ident array, so we can figure out
* endian-ness, word size, and in future other useful
* parameters