diff options
Diffstat (limited to 'Intel/info.c')
-rw-r--r-- | Intel/info.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Intel/info.c b/Intel/info.c index dae362d..2be9062 100644 --- a/Intel/info.c +++ b/Intel/info.c @@ -120,10 +120,12 @@ void display_extended_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_performance_MSRs(cpu); - dump_thermal_MSRs(cpu); - } + + dump_performance_MSRs(cpu); + + dump_thermal_MSRs(cpu); + + dump_IDA_MSRs(cpu); } if (show_eblcr) { |