Commit f9ad0bb5 authored by Peter Stuge's avatar Peter Stuge
Browse files

Always print address when verification fails, not only with -V


Corresponding to flashrom svn r381 and coreboot v2 svn r3860.
Signed-off-by: default avatarPeter Stuge <peter@stuge.se>
Acked-by: default avatarPeter Stuge <peter@stuge.se>
parent 5807206c
......@@ -186,10 +186,11 @@ int verify_flash(struct flashchip *flash, uint8_t *buf)
printf("0x%08x", idx);
if (*(buf2 + idx) != *(buf + idx)) {
if (verbose) {
printf("0x%08x ", idx);
}
printf("FAILED! Expected=0x%02x, Read=0x%02x\n",
if (verbose)
printf("0x%08x FAILED!", idx);
else
printf("FAILED at 0x%08x!", idx);
printf(" Expected=0x%02x, Read=0x%02x\n",
*(buf + idx), *(buf2 + idx));
return 1;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment