]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/kernel/cpu/umc.c
Merge branch 'x86-pti-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / kernel / cpu / umc.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2#include <linux/kernel.h>
1da177e4
LT
3#include <asm/processor.h>
4#include "cpu.h"
5
48e6b7a0
PC
6/*
7 * UMC chips appear to be only either 386 or 486,
8 * so no special init takes place.
1da177e4 9 */
1da177e4 10
148f9bb8 11static const struct cpu_dev umc_cpu_dev = {
1da177e4 12 .c_vendor = "UMC",
48e6b7a0 13 .c_ident = { "UMC UMC UMC" },
09dc68d9
JB
14 .legacy_models = {
15 { .family = 4, .model_names =
48e6b7a0
PC
16 {
17 [1] = "U5D",
18 [2] = "U5S",
1da177e4
LT
19 }
20 },
21 },
10a434fc 22 .c_x86_vendor = X86_VENDOR_UMC,
1da177e4
LT
23};
24
10a434fc 25cpu_dev_register(umc_cpu_dev);
03ae5768 26