diff options
Diffstat (limited to 'arch/x86_64')
-rw-r--r-- | arch/x86_64/kernel/cpufreq/Kconfig | 1 | ||||
-rw-r--r-- | arch/x86_64/lib/Makefile | 1 | ||||
-rw-r--r-- | arch/x86_64/lib/msr-on-cpu.c | 1 |
3 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86_64/kernel/cpufreq/Kconfig b/arch/x86_64/kernel/cpufreq/Kconfig index 45a6a1fd14ac..ced15d06f0f3 100644 --- a/arch/x86_64/kernel/cpufreq/Kconfig +++ b/arch/x86_64/kernel/cpufreq/Kconfig | |||
@@ -45,7 +45,6 @@ config X86_SPEEDSTEP_CENTRINO | |||
45 | config X86_SPEEDSTEP_CENTRINO_ACPI | 45 | config X86_SPEEDSTEP_CENTRINO_ACPI |
46 | bool | 46 | bool |
47 | depends on X86_SPEEDSTEP_CENTRINO | 47 | depends on X86_SPEEDSTEP_CENTRINO |
48 | default y | ||
49 | 48 | ||
50 | config X86_ACPI_CPUFREQ | 49 | config X86_ACPI_CPUFREQ |
51 | tristate "ACPI Processor P-States driver" | 50 | tristate "ACPI Processor P-States driver" |
diff --git a/arch/x86_64/lib/Makefile b/arch/x86_64/lib/Makefile index 8d5f835af481..c94327178398 100644 --- a/arch/x86_64/lib/Makefile +++ b/arch/x86_64/lib/Makefile | |||
@@ -5,6 +5,7 @@ | |||
5 | CFLAGS_csum-partial.o := -funroll-loops | 5 | CFLAGS_csum-partial.o := -funroll-loops |
6 | 6 | ||
7 | obj-y := io.o iomap_copy.o | 7 | obj-y := io.o iomap_copy.o |
8 | obj-$(CONFIG_SMP) += msr-on-cpu.o | ||
8 | 9 | ||
9 | lib-y := csum-partial.o csum-copy.o csum-wrappers.o delay.o \ | 10 | lib-y := csum-partial.o csum-copy.o csum-wrappers.o delay.o \ |
10 | usercopy.o getuser.o putuser.o \ | 11 | usercopy.o getuser.o putuser.o \ |
diff --git a/arch/x86_64/lib/msr-on-cpu.c b/arch/x86_64/lib/msr-on-cpu.c new file mode 100644 index 000000000000..47e0ec47c376 --- /dev/null +++ b/arch/x86_64/lib/msr-on-cpu.c | |||
@@ -0,0 +1 @@ | |||
#include "../../i386/lib/msr-on-cpu.c" | |||