Release 4.10 arch/x86/kernel/cpu/umc.c
#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 | dave jones | 43 | 62.32% | 1 | 12.50% |
art haas | art haas | 10 | 14.49% | 1 | 12.50% |
yinghai lu | yinghai lu | 6 | 8.70% | 1 | 12.50% |
rusty russell | rusty russell | 4 | 5.80% | 1 | 12.50% |
paolo ciarrocchi | paolo ciarrocchi | 2 | 2.90% | 1 | 12.50% |
jan beulich | jan beulich | 2 | 2.90% | 2 | 25.00% |
thomas petazzoni | thomas petazzoni | 2 | 2.90% | 1 | 12.50% |
| Total | 69 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.