summaryrefslogtreecommitdiff
path: root/Intel
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2011-02-22 18:50:46 -0500
committerDave Jones <davej@redhat.com>2011-02-22 18:50:46 -0500
commitb5629dcb903d5d48c38572b6a024336b34aeb98b (patch)
tree3005b751b362764689230f6b6bc5a585ee336ade /Intel
parent5d82ff4e572c5b8573f8848668feca5555e0e120 (diff)
Split intel info into basic/extended.
Diffstat (limited to 'Intel')
-rw-r--r--Intel/info.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/Intel/info.c b/Intel/info.c
index 53f391b..dae362d 100644
--- a/Intel/info.c
+++ b/Intel/info.c
@@ -96,7 +96,7 @@ static void decode_brand(struct cpudata *cpu)
printf(")\n");
}
-void display_Intel_info(struct cpudata *cpu)
+void display_basic_Intel_info(struct cpudata *cpu)
{
if (cpu->type != 3) {
printf("Type: %u (", cpu->type);
@@ -112,10 +112,11 @@ void display_Intel_info(struct cpudata *cpu)
}
if (cpu->brand > 0)
decode_brand(cpu);
- printf("\n");
- /*end of basic identify info*/
+}
+void display_extended_Intel_info(struct cpudata *cpu)
+{
if (show_msr) {
if (cpu->family == 0xf)
dump_p4_MSRs(cpu);