umc.c 481 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
#include <linux/kernel.h>
#include <linux/init.h>
#include <asm/processor.h>
#include "cpu.h"

6 7 8
/*
 * UMC chips appear to be only either 386 or 486,
 * so no special init takes place.
L
Linus Torvalds 已提交
9 10
 */

11
static struct cpu_dev umc_cpu_dev __cpuinitdata = {
L
Linus Torvalds 已提交
12
	.c_vendor	= "UMC",
13
	.c_ident	= { "UMC UMC UMC" },
L
Linus Torvalds 已提交
14 15
	.c_models = {
		{ .vendor = X86_VENDOR_UMC, .family = 4, .model_names =
16 17 18
		  {
			  [1] = "U5D",
			  [2] = "U5S",
L
Linus Torvalds 已提交
19 20 21 22 23
		  }
		},
	},
};

24 25
cpu_vendor_dev_register(X86_VENDOR_UMC, &umc_cpu_dev);