summaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2005-10-27 16:45:38 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2005-10-28 12:53:48 +1000
commitecc81e0f719f566b75b222b8aef64c8b809b2e29 (patch)
tree34f021072504ef2e4e32b5d0900a34baa6d898a9 /arch/powerpc
parent43f35ec35c2b9a1c984d885893084eed2101e1bf (diff)
downloadlinux-0-day-ecc81e0f719f566b75b222b8aef64c8b809b2e29.tar.gz
linux-0-day-ecc81e0f719f566b75b222b8aef64c8b809b2e29.tar.xz
ppc64: use lockc.c from powerpc/lib
since it is effectively the same as locks.c from ppc64/lib. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/lib/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile
index 3474c9309e2f3..955c064215905 100644
--- a/arch/powerpc/lib/Makefile
+++ b/arch/powerpc/lib/Makefile
@@ -7,10 +7,10 @@ obj-y := strcase.o string.o
obj-$(CONFIG_PPC32) += div64.o copy_32.o checksum_32.o
obj-$(CONFIG_PPC64) += memcpy_64.o \
usercopy_64.o sstep.o mem_64.o
-ifeq ($(CONFIG_PPC64),y)
-obj-$(CONFIG_SMP) += locks.o
-endif
endif
obj-$(CONFIG_PPC64) += checksum_64.o copypage_64.o copyuser_64.o
obj-$(CONFIG_PPC_ISERIES) += e2a.o
+ifeq ($(CONFIG_PPC64),y)
+obj-$(CONFIG_SMP) += locks.o
+endif