Commit 8f6196c1 authored by Len Brown's avatar Len Brown

tools/power turbostat: Baytrail: remove debug line in quiet mode

Without --debug, a debug line was printed on Baytrail:

SLM BCLK: 83.3 Mhz
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 71616c8e
......@@ -3388,7 +3388,8 @@ double slm_bclk(void)
}
freq = slm_freq_table[i];
fprintf(outf, "SLM BCLK: %.1f Mhz\n", freq);
if (debug)
fprintf(outf, "SLM BCLK: %.1f Mhz\n", freq);
return freq;
}
......
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