summaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2005-10-27 16:25:05 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2005-10-28 12:52:58 +1000
commit1a3c061efd32b620cf6498b71687ff0768cfe2d8 (patch)
tree7b6c7321dfd18aef1fc5824114587418eabc5aca /arch/powerpc
parent640768eef245f1578e75e02c17d277a1496a535b (diff)
downloadlinux-0-day-1a3c061efd32b620cf6498b71687ff0768cfe2d8.tar.gz
linux-0-day-1a3c061efd32b620cf6498b71687ff0768cfe2d8.tar.xz
ppc64: use checksum_64.S from powerpc
as it is identical to checksum.S from ppc64. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/lib/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile
index 30367a0237dd0..1f1f01b757d4c 100644
--- a/arch/powerpc/lib/Makefile
+++ b/arch/powerpc/lib/Makefile
@@ -2,12 +2,15 @@
# Makefile for ppc-specific library files..
#
+ifeq ($(CONFIG_PPC_MERGE),y)
obj-y := strcase.o string.o
obj-$(CONFIG_PPC32) += div64.o copy_32.o checksum_32.o
obj-$(CONFIG_PPC64) += copypage_64.o copyuser_64.o memcpy_64.o \
- usercopy_64.o sstep.o checksum_64.o mem_64.o
+ usercopy_64.o sstep.o mem_64.o
obj-$(CONFIG_PPC_ISERIES) += e2a.o
ifeq ($(CONFIG_PPC64),y)
obj-$(CONFIG_SMP) += locks.o
endif
+endif
+obj-$(CONFIG_PPC64) += checksum_64.o