mce: Stop using array-index-based RCU primitives
[deliverable/linux.git] / arch / x86 / kernel / cpu / umc.c
CommitLineData
1da177e4 1#include <linux/kernel.h>
1da177e4
LT
2#include <asm/processor.h>
3#include "cpu.h"
4
48e6b7a0
PC
5/*
6 * UMC chips appear to be only either 386 or 486,
7 * so no special init takes place.
1da177e4 8 */
1da177e4 9
148f9bb8 10static const struct cpu_dev umc_cpu_dev = {
1da177e4 11 .c_vendor = "UMC",
48e6b7a0 12 .c_ident = { "UMC UMC UMC" },
09dc68d9
JB
13 .legacy_models = {
14 { .family = 4, .model_names =
48e6b7a0
PC
15 {
16 [1] = "U5D",
17 [2] = "U5S",
1da177e4
LT
18 }
19 },
20 },
10a434fc 21 .c_x86_vendor = X86_VENDOR_UMC,
1da177e4
LT
22};
23
10a434fc 24cpu_dev_register(umc_cpu_dev);
03ae5768 25
This page took 1.21887 seconds and 5 git commands to generate.