simio/tracer: fix output format
This commit adds ":" after "SMCLK". Previous output: MCLK: ... SMCLK ... ACLK: ... Current output: MCLK: ... SMCLK: ... ACLK: ...
This commit is contained in:
parent
66dd71e62d
commit
4c4d94e43b
|
@ -236,7 +236,7 @@ static int tracer_info(struct simio_device *dev)
|
||||||
|
|
||||||
printc("Instruction count: %" LLFMT "\n", tr->inscount);
|
printc("Instruction count: %" LLFMT "\n", tr->inscount);
|
||||||
printc("MCLK: %" LLFMT "\n", tr->cycles[SIMIO_MCLK]);
|
printc("MCLK: %" LLFMT "\n", tr->cycles[SIMIO_MCLK]);
|
||||||
printc("SMCLK %" LLFMT "\n", tr->cycles[SIMIO_SMCLK]);
|
printc("SMCLK: %" LLFMT "\n", tr->cycles[SIMIO_SMCLK]);
|
||||||
printc("ACLK: %" LLFMT "\n", tr->cycles[SIMIO_ACLK]);
|
printc("ACLK: %" LLFMT "\n", tr->cycles[SIMIO_ACLK]);
|
||||||
|
|
||||||
if (tr->irq_request >= 0)
|
if (tr->irq_request >= 0)
|
||||||
|
|
Loading…
Reference in New Issue