diff options
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) { |