aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/cpu
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-08-06 13:06:28 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2010-08-06 13:06:28 -0400
commitf7ddc2b6cd880a259db338925d03bdc01f1d26c1 (patch)
treefdc28aeb2219d683f88df96e55297ac84aa8c129 /arch/x86/kernel/cpu
parenta5e11599da95fbe8425db0cfd01a581d7412d0c9 (diff)
parent14671386dcbafb3086bbda3cb6f9f27d34c7bf6d (diff)
Merge branch 'x86-mrst-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'x86-mrst-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: x86, mrst: make mrst_timer_options an enum x86, mrst: make mrst_identify_cpu() an inline returning enum x86, mrst: add more timer config options x86, mrst: add cpu type detection x86: detect scattered cpuid features earlier
Diffstat (limited to 'arch/x86/kernel/cpu')
-rw-r--r--arch/x86/kernel/cpu/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c
index c7358303d8cd..f10273138382 100644
--- a/arch/x86/kernel/cpu/common.c
+++ b/arch/x86/kernel/cpu/common.c
@@ -586,6 +586,7 @@ static void __cpuinit get_cpu_cap(struct cpuinfo_x86 *c)
586 if (c->extended_cpuid_level >= 0x80000007) 586 if (c->extended_cpuid_level >= 0x80000007)
587 c->x86_power = cpuid_edx(0x80000007); 587 c->x86_power = cpuid_edx(0x80000007);
588 588
589 init_scattered_cpuid_features(c);
589} 590}
590 591
591static void __cpuinit identify_cpu_without_cpuid(struct cpuinfo_x86 *c) 592static void __cpuinit identify_cpu_without_cpuid(struct cpuinfo_x86 *c)
@@ -741,7 +742,6 @@ static void __cpuinit generic_identify(struct cpuinfo_x86 *c)
741 742
742 get_model_name(c); /* Default name */ 743 get_model_name(c); /* Default name */
743 744
744 init_scattered_cpuid_features(c);
745 detect_nopl(c); 745 detect_nopl(c);
746} 746}
747 747