Skip to content
Snippets Groups Projects
Commit c0b77e09 authored by Heiko Schocher's avatar Heiko Schocher Committed by Wolfgang Denk
Browse files

cmd_log: print log->v2.con value in the "log info" command


print in the "log info" command, if "log_version = 2" also the
value from "log->v2.con".

Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
Acked-by: default avatarDetlev Zundel <dzu@denx.de>
parent 1e8e7ae5
No related branches found
No related tags found
No related merge requests found
......@@ -236,6 +236,7 @@ int do_log(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
printf("log_start = %08lx\n",
log->v2.start);
printf("log_end = %08lx\n", log->v2.end);
printf("log_con = %08lx\n", log->v2.con);
printf("logged_chars = %08lx\n",
log->v2.chars);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment