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

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

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

Y
Yinghai Lu 已提交
24
cpu_dev_register(umc_cpu_dev);
25