diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-10 08:50:37 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-10 08:50:37 -0400 |
commit | 40ef8cbc6d360e564573eb19582249c35d8ba330 (patch) | |
tree | abba70b7da8bef93a87431691dc8df79eb4425d5 /arch/powerpc/lib/Makefile | |
parent | bc6f8a4b199156897f6eb5b70bf5c1a4773f4e2b (diff) |
powerpc: Get 64-bit configs to compile with ARCH=powerpc
This is a bunch of mostly small fixes that are needed to get
ARCH=powerpc to compile for 64-bit. This adds setup_64.c from
arch/ppc64/kernel/setup.c and locks.c from arch/ppc64/lib/locks.c.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/lib/Makefile')
-rw-r--r-- | arch/powerpc/lib/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile index a8cedb96de5f..30367a0237dd 100644 --- a/arch/powerpc/lib/Makefile +++ b/arch/powerpc/lib/Makefile | |||
@@ -7,3 +7,7 @@ obj-$(CONFIG_PPC32) += div64.o copy_32.o checksum_32.o | |||
7 | obj-$(CONFIG_PPC64) += copypage_64.o copyuser_64.o memcpy_64.o \ | 7 | obj-$(CONFIG_PPC64) += copypage_64.o copyuser_64.o memcpy_64.o \ |
8 | usercopy_64.o sstep.o checksum_64.o mem_64.o | 8 | usercopy_64.o sstep.o checksum_64.o mem_64.o |
9 | obj-$(CONFIG_PPC_ISERIES) += e2a.o | 9 | obj-$(CONFIG_PPC_ISERIES) += e2a.o |
10 | ifeq ($(CONFIG_PPC64),y) | ||
11 | obj-$(CONFIG_SMP) += locks.o | ||
12 | endif | ||
13 | |||