cregit-Linux how code gets into the kernel

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

PersonTokensPropCommitsCommitProp
dave jonesdave jones4362.32%112.50%
art haasart haas1014.49%112.50%
yinghai luyinghai lu68.70%112.50%
rusty russellrusty russell45.80%112.50%
paolo ciarrocchipaolo ciarrocchi22.90%112.50%
jan beulichjan beulich22.90%225.00%
thomas petazzonithomas petazzoni22.90%112.50%
Total69100.00%8100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.