[BACK]Return to umc.c CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / arch / i386 / kernel / cpu

File: [Development] / linux-2.6-xfs / arch / i386 / kernel / cpu / Attic / umc.c (download)

Revision 1.4, Thu May 24 16:41:45 2007 UTC (10 years, 4 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.3: +0 -10 lines

Merge up to 2.6.22-rc2
Merge of 2.6.x-xfs-melb:linux:28675b by kenmcd.

#include <linux/kernel.h>
#include <linux/init.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 struct cpu_dev umc_cpu_dev __cpuinitdata = {
	.c_vendor	= "UMC",
	.c_ident 	= { "UMC UMC UMC" },
	.c_models = {
		{ .vendor = X86_VENDOR_UMC, .family = 4, .model_names =
		  { 
			  [1] = "U5D", 
			  [2] = "U5S", 
		  }
		},
	},
};

int __init umc_init_cpu(void)
{
	cpu_devs[X86_VENDOR_UMC] = &umc_cpu_dev;
	return 0;
}