aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/power/x86/turbostat/turbostat.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c
index 89c31e90a85e..83d1fb9750aa 100644
--- a/tools/power/x86/turbostat/turbostat.c
+++ b/tools/power/x86/turbostat/turbostat.c
@@ -3168,10 +3168,11 @@ void decode_misc_pwr_mgmt_msr(void)
3168 return; 3168 return;
3169 3169
3170 if (!get_msr(base_cpu, MSR_MISC_PWR_MGMT, &msr)) 3170 if (!get_msr(base_cpu, MSR_MISC_PWR_MGMT, &msr))
3171 fprintf(outf, "cpu%d: MSR_MISC_PWR_MGMT: 0x%08llx (%sable-EIST_Coordination %sable-EPB)\n", 3171 fprintf(outf, "cpu%d: MSR_MISC_PWR_MGMT: 0x%08llx (%sable-EIST_Coordination %sable-EPB %sable-OOB)\n",
3172 base_cpu, msr, 3172 base_cpu, msr,
3173 msr & (1 << 0) ? "DIS" : "EN", 3173 msr & (1 << 0) ? "DIS" : "EN",
3174 msr & (1 << 1) ? "EN" : "DIS"); 3174 msr & (1 << 1) ? "EN" : "DIS",
3175 msr & (1 << 8) ? "EN" : "DIS");
3175} 3176}
3176 3177
3177void process_cpuid() 3178void process_cpuid()