aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/kernel/cpu/umc.c
blob: b1fc90989d75ac132324e8f8301ff9bb553beea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <linux/kernel.h>
#include <linux/init.h>
#include <asm/processor.h>
#include "cpu.h"

/*
 * UMC chips appear to be only either 386 or 486,
 * so no special init takes place.
 */

static struct cpu_dev umc_cpu_dev __cpuinitdata = {
	.c_vendor	= "UMC",
	.c_ident	= { "UMC UMC UMC" },
	.c_models = {
		{ .vendor = X86_VENDOR_UMC, .family = 4, .model_names =
		  {
			  [1] = "U5D",
			  [2] = "U5S",
		  }
		},
	},
};

cpu_vendor_dev_register(X86_VENDOR_UMC, &umc_cpu_dev);