diff options
author | Dave Jones <davej@redhat.com> | 2008-07-02 18:23:04 -0400 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2008-07-02 18:23:04 -0400 |
commit | 110b221a119f56108bbf4cd4f6a28f63290fc5ee (patch) | |
tree | 2c94f27f1d4630f49d4c50f7343459609088a385 /Intel | |
parent | c719210577b577e0607a9001b2f9aa3753a12f2c (diff) |
Move cacheinfo display decisions to main() and only output when -a or -c
Diffstat (limited to 'Intel')
-rw-r--r-- | Intel/info.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Intel/info.c b/Intel/info.c index 1776268..f2a2367 100644 --- a/Intel/info.c +++ b/Intel/info.c @@ -50,7 +50,7 @@ void display_Intel_info(struct cpudata *cpu) /* Pentium4 and Banias have cpu name. */ if (cpu->family == 0xF || (cpu->family == 6 && cpu->model == 9)) - get_model_name (cpu); + get_model_name(cpu); if (show_msr) { if (cpu->family == 0xf) @@ -59,8 +59,6 @@ void display_Intel_info(struct cpudata *cpu) dump_centrino_MSRs(cpu); } - decode_Intel_caches(cpu, 1); - if (show_eblcr) { if (cpu->family == 6 && cpu->model >= 3) { unsigned long long eblcr; |