diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:16:58 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:16:58 -0400 |
commit | f7627e2513987bb5d4e8cb13c4e0a478352141ac (patch) | |
tree | 46ef70a107285c1dfe8161a57f433d30252d285a /arch/i386/kernel/cpu/umc.c | |
parent | 4ac24f63fd203bc12a841a88a2034dccd358d0d1 (diff) |
i386: move kernel/cpu
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/i386/kernel/cpu/umc.c')
-rw-r--r-- | arch/i386/kernel/cpu/umc.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/arch/i386/kernel/cpu/umc.c b/arch/i386/kernel/cpu/umc.c deleted file mode 100644 index a7a4e75bdcd7..000000000000 --- a/arch/i386/kernel/cpu/umc.c +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | #include <linux/kernel.h> | ||
2 | #include <linux/init.h> | ||
3 | #include <asm/processor.h> | ||
4 | #include "cpu.h" | ||
5 | |||
6 | /* UMC chips appear to be only either 386 or 486, so no special init takes place. | ||
7 | */ | ||
8 | |||
9 | static struct cpu_dev umc_cpu_dev __cpuinitdata = { | ||
10 | .c_vendor = "UMC", | ||
11 | .c_ident = { "UMC UMC UMC" }, | ||
12 | .c_models = { | ||
13 | { .vendor = X86_VENDOR_UMC, .family = 4, .model_names = | ||
14 | { | ||
15 | [1] = "U5D", | ||
16 | [2] = "U5S", | ||
17 | } | ||
18 | }, | ||
19 | }, | ||
20 | }; | ||
21 | |||
22 | int __init umc_init_cpu(void) | ||
23 | { | ||
24 | cpu_devs[X86_VENDOR_UMC] = &umc_cpu_dev; | ||
25 | return 0; | ||
26 | } | ||