summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2015-08-25 13:11:28 +0200
committerPatrick Georgi <pgeorgi@google.com>2015-08-26 12:21:20 +0000
commitae7efb9257fa80634627534c45c9d511cb4732e6 (patch)
treeb1f97abecc7f8a22e477dbb348874de57c47c4bd /util
parent7a33b53dc0f55ed64c2b07796d2d4d302d78bac1 (diff)
downloadcoreboot-ae7efb9257fa80634627534c45c9d511cb4732e6.tar.gz
coreboot-ae7efb9257fa80634627534c45c9d511cb4732e6.tar.bz2
coreboot-ae7efb9257fa80634627534c45c9d511cb4732e6.zip
cbfstool: cut down on the debug output
Change-Id: I9a0aad42e4eb67a07c939d7cfa0d2d80838412bb Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/11323 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'util')
-rw-r--r--util/cbfstool/cbfs_image.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/util/cbfstool/cbfs_image.c b/util/cbfstool/cbfs_image.c
index a08bb2f12093..acf68ce2bb30 100644
--- a/util/cbfstool/cbfs_image.c
+++ b/util/cbfstool/cbfs_image.c
@@ -495,12 +495,10 @@ static int cbfs_add_entry_at(struct cbfs_image *image,
* to file data.
*/
DEBUG("|..|header|content|... <use offset to create entry>\n");
- DEBUG("before: offset=0x%x, len=0x%x\n",
- ntohl(entry->offset), ntohl(entry->len));
+ DEBUG("before: offset=0x%x\n", ntohl(entry->offset));
// TODO reset expanded name buffer to 0xFF.
entry->offset = htonl(ntohl(entry->offset) + len);
- DEBUG("after: offset=0x%x, len=0x%x\n",
- ntohl(entry->offset), ntohl(entry->len));
+ DEBUG("after: offset=0x%x\n", ntohl(entry->len));
}
// Ready to fill data into entry.