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>
This commit is contained in:
parent
7a33b53dc0
commit
ae7efb9257
|
@ -495,12 +495,10 @@ static int cbfs_add_entry_at(struct cbfs_image *image,
|
||||||
* to file data.
|
* to file data.
|
||||||
*/
|
*/
|
||||||
DEBUG("|..|header|content|... <use offset to create entry>\n");
|
DEBUG("|..|header|content|... <use offset to create entry>\n");
|
||||||
DEBUG("before: offset=0x%x, len=0x%x\n",
|
DEBUG("before: offset=0x%x\n", ntohl(entry->offset));
|
||||||
ntohl(entry->offset), ntohl(entry->len));
|
|
||||||
// TODO reset expanded name buffer to 0xFF.
|
// TODO reset expanded name buffer to 0xFF.
|
||||||
entry->offset = htonl(ntohl(entry->offset) + len);
|
entry->offset = htonl(ntohl(entry->offset) + len);
|
||||||
DEBUG("after: offset=0x%x, len=0x%x\n",
|
DEBUG("after: offset=0x%x\n", ntohl(entry->len));
|
||||||
ntohl(entry->offset), ntohl(entry->len));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ready to fill data into entry.
|
// Ready to fill data into entry.
|
||||||
|
|
Loading…
Reference in New Issue