Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
[deliverable/linux.git] / arch / x86 / kernel / cpu / umc.c
1 #include <linux/kernel.h>
2 #include <asm/processor.h>
3 #include "cpu.h"
4
5 /*
6 * UMC chips appear to be only either 386 or 486,
7 * so no special init takes place.
8 */
9
10 static const struct cpu_dev umc_cpu_dev = {
11 .c_vendor = "UMC",
12 .c_ident = { "UMC UMC UMC" },
13 .legacy_models = {
14 { .family = 4, .model_names =
15 {
16 [1] = "U5D",
17 [2] = "U5S",
18 }
19 },
20 },
21 .c_x86_vendor = X86_VENDOR_UMC,
22 };
23
24 cpu_dev_register(umc_cpu_dev);
25
This page took 0.031942 seconds and 5 git commands to generate.