summaryrefslogtreecommitdiff
path: root/x86info.c
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2010-09-08 14:25:48 -0400
committerDave Jones <davej@redhat.com>2010-09-08 14:25:48 -0400
commitd6cf4f4a4ff5ba5cce52c5804bbf40fb42928178 (patch)
treefe8c124c09dbd094e9704e4903e7ca3785589332 /x86info.c
parent91f84aa9a89cdecabc99fbc8565118ced53ea50c (diff)
only support topology parsing on intel for now
Diffstat (limited to 'x86info.c')
-rw-r--r--x86info.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/x86info.c b/x86info.c
index 717945e..f99219a 100644
--- a/x86info.c
+++ b/x86info.c
@@ -436,7 +436,9 @@ int main (int argc, char **argv)
separator();
}
- display_topology(head);
+ /* For now, we only support topology parsing on Intel. */
+ if (cpu->vendor == VENDOR_INTEL)
+ display_topology(head);
printf (" running at an estimated ");
display_MHz(cpu);