summaryrefslogtreecommitdiff
path: root/identify.c
diff options
context:
space:
mode:
authorAndreas Herrmann <andreas.herrmann3@amd.com>2008-07-24 14:23:10 +0200
committerDave Jones <davej@redhat.com>2008-10-09 15:00:25 -0400
commit229213a7860ab55dc82c560ee677194d343717b1 (patch)
tree315f65c9a01a633f7d1ca64c4365d40771117f36 /identify.c
parent020b68a466f3d4baac666a384fd530a95eaf7f0c (diff)
x86info: intro of enum for vendor ID, new cpuid.h file
- use enum for vendor IDs - separate out cpuid related declarations (move it from x86info.h to cpuid.h) Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com>
Diffstat (limited to 'identify.c')
-rw-r--r--identify.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/identify.c b/identify.c
index 2a375be..2a96721 100644
--- a/identify.c
+++ b/identify.c
@@ -83,6 +83,9 @@ void identify(struct cpudata *cpu)
case VENDOR_SIS:
identify_sis(cpu);
break;
+ case VENDOR_TRANSMETA:
+ case VENDOR_UNKNOWN:
+ break;
}
}