diff options
author | Dave Jones <davej@redhat.com> | 2011-02-18 14:24:23 -0500 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2011-02-18 14:24:23 -0500 |
commit | 16809ddb1f5577608289a6c35a7bc8064cebfd06 (patch) | |
tree | bb11043945dafec3f7dad2981fc4f998f6f48709 /Intel/info.c | |
parent | d28aa3142537a2a22814f52111c3cd4afa2a27bc (diff) |
Split MSR-PM into thermal and performance
Diffstat (limited to 'Intel/info.c')
-rw-r--r-- | Intel/info.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Intel/info.c b/Intel/info.c index 166ccbf..20a3afa 100644 --- a/Intel/info.c +++ b/Intel/info.c @@ -116,8 +116,10 @@ void display_Intel_info(struct cpudata *cpu) if (show_msr) { if (cpu->family == 0xf) dump_p4_MSRs(cpu); - if (cpu->family == 0x6 && (cpu->model == 9 || model(cpu) >= 13)) - dump_centrino_MSRs(cpu); + if (cpu->family == 0x6 && (cpu->model == 9 || model(cpu) >= 13)) { + dump_performance_MSRs(cpu); + dump_thermal_MSRs(cpu); + } } if (show_eblcr) { |