diff options
author | Len Brown <len.brown@intel.com> | 2022-10-13 12:42:29 +0200 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2023-03-17 15:59:17 +0100 |
commit | 884a1f956179b561e7e7f1d29fc331cf53233c89 (patch) | |
tree | 3739db353d565694b4cf9d095182895ad430c65d /tools | |
parent | Linux 6.3-rc2 (diff) | |
download | linux-884a1f956179b561e7e7f1d29fc331cf53233c89.tar.xz linux-884a1f956179b561e7e7f1d29fc331cf53233c89.zip |
tools/power turbostat: update dump of SECONDARY_TURBO_RATIO_LIMIT
cosmetic only (but useful if you copy/paste)
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index aba460410dbd..7ae3086c5ec0 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -2538,7 +2538,7 @@ static void dump_turbo_ratio_limits(int trl_msr_offset, int family, int model) get_msr(base_cpu, trl_msr_offset, &msr); fprintf(outf, "cpu%d: MSR_%sTURBO_RATIO_LIMIT: 0x%08llx\n", - base_cpu, trl_msr_offset == MSR_SECONDARY_TURBO_RATIO_LIMIT ? "SECONDARY" : "", msr); + base_cpu, trl_msr_offset == MSR_SECONDARY_TURBO_RATIO_LIMIT ? "SECONDARY_" : "", msr); if (has_turbo_ratio_group_limits(family, model)) { get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT1, &core_counts); |