diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-02-20 01:07:13 +0100 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2007-02-20 14:29:37 -0500 |
commit | b44755cfaa72e7ed3d831a946bb4e7dfe7548966 (patch) | |
tree | 251cf0ab5aa9c39bab3f0981ab96021b5523bee3 /arch/i386/lib/Makefile | |
parent | 48ac3271e52d23ee987da93f80d20f6bec8e6717 (diff) |
{rd,wr}msr_on_cpu SMP=n optimization
Let's save a few bytes in the CONFIG_SMP=n case.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'arch/i386/lib/Makefile')
-rw-r--r-- | arch/i386/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/lib/Makefile b/arch/i386/lib/Makefile index 0d41223472c..22d8ac5815f 100644 --- a/arch/i386/lib/Makefile +++ b/arch/i386/lib/Makefile @@ -8,4 +8,4 @@ lib-y = checksum.o delay.o usercopy.o getuser.o putuser.o memcpy.o strstr.o \ lib-$(CONFIG_X86_USE_3DNOW) += mmx.o -obj-y = msr-on-cpu.o +obj-$(CONFIG_SMP) += msr-on-cpu.o |