| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/kernel.h> | 
|  | 2 | #include <linux/init.h> | 
|  | 3 | #include <asm/processor.h> | 
|  | 4 | #include "cpu.h" | 
|  | 5 |  | 
| Paolo Ciarrocchi | 48e6b7a | 2008-02-21 00:18:34 +0100 | [diff] [blame] | 6 | /* | 
|  | 7 | * UMC chips appear to be only either 386 or 486, | 
|  | 8 | * so no special init takes place. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 |  | 
| Jan Beulich | 02dde8b | 2009-03-12 12:08:49 +0000 | [diff] [blame] | 11 | static const struct cpu_dev __cpuinitconst umc_cpu_dev = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | .c_vendor	= "UMC", | 
| Paolo Ciarrocchi | 48e6b7a | 2008-02-21 00:18:34 +0100 | [diff] [blame] | 13 | .c_ident	= { "UMC UMC UMC" }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | .c_models = { | 
|  | 15 | { .vendor = X86_VENDOR_UMC, .family = 4, .model_names = | 
| Paolo Ciarrocchi | 48e6b7a | 2008-02-21 00:18:34 +0100 | [diff] [blame] | 16 | { | 
|  | 17 | [1] = "U5D", | 
|  | 18 | [2] = "U5S", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | } | 
|  | 20 | }, | 
|  | 21 | }, | 
| Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 22 | .c_x86_vendor	= X86_VENDOR_UMC, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | }; | 
|  | 24 |  | 
| Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 25 | cpu_dev_register(umc_cpu_dev); | 
| Thomas Petazzoni | 03ae576 | 2008-02-15 12:00:23 +0100 | [diff] [blame] | 26 |  |