Release 4.14 arch/x86/kernel/cpu/umc.c
// SPDX-License-Identifier: GPL-2.0
#include <linux/kernel.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 const struct cpu_dev umc_cpu_dev = {
.c_vendor = "UMC",
.c_ident = { "UMC UMC UMC" },
.legacy_models = {
{ .family = 4, .model_names =
{
[1] = "U5D",
[2] = "U5S",
}
},
},
.c_x86_vendor = X86_VENDOR_UMC,
};
cpu_dev_register(umc_cpu_dev);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 43 | 61.43% | 1 | 11.11% |
Art Haas | 10 | 14.29% | 1 | 11.11% |
Yinghai Lu | 6 | 8.57% | 1 | 11.11% |
Rusty Russell | 4 | 5.71% | 1 | 11.11% |
Paolo Ciarrocchi | 2 | 2.86% | 1 | 11.11% |
Jan Beulich | 2 | 2.86% | 2 | 22.22% |
Thomas Petazzoni | 2 | 2.86% | 1 | 11.11% |
Greg Kroah-Hartman | 1 | 1.43% | 1 | 11.11% |
Total | 70 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.