aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/cell/Makefile
diff options
context:
space:
mode:
authorarnd@arndb.de <arnd@arndb.de>2006-06-19 14:33:20 -0400
committerPaul Mackerras <paulus@samba.org>2006-06-21 01:01:30 -0400
commit91edfa49b97f0b0fafac5c8d5f171fc183782ce6 (patch)
tree64737a0eb2e3594fcd1c619f5a04810aa5be5a8b /arch/powerpc/platforms/cell/Makefile
parent1d64093f6627a7eef1ed0fe005463f0a5ea25a5f (diff)
[POWERPC] cell: always build spu base into the kernel
The spu_base module is rather deeply intermixed with the core kernel, so it makes sense to have that built-in. This will let us extend the base in the future without having to export more core symbols just for it. Signed-off-by: Arnd Bergmann <arnd.bergmann@de.ibm.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/cell/Makefile')
-rw-r--r--arch/powerpc/platforms/cell/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/powerpc/platforms/cell/Makefile b/arch/powerpc/platforms/cell/Makefile
index 6b11f6adca08..bfaf40024634 100644
--- a/arch/powerpc/platforms/cell/Makefile
+++ b/arch/powerpc/platforms/cell/Makefile
@@ -3,15 +3,11 @@ obj-y += cbe_regs.o pervasive.o
3obj-$(CONFIG_CBE_RAS) += ras.o 3obj-$(CONFIG_CBE_RAS) += ras.o
4 4
5obj-$(CONFIG_SMP) += smp.o 5obj-$(CONFIG_SMP) += smp.o
6obj-$(CONFIG_SPU_FS) += spu-base.o spufs/
7
8spu-base-y += spu_base.o spu_priv1.o
9 6
10# needed only when building loadable spufs.ko 7# needed only when building loadable spufs.ko
11spufs-modular-$(CONFIG_SPU_FS) += spu_syscalls.o 8spufs-modular-$(CONFIG_SPU_FS) += spu_syscalls.o
12obj-y += $(spufs-modular-m) 9obj-y += $(spufs-modular-m)
13 10
14# always needed in kernel 11# always needed in kernel
15spufs-builtin-$(CONFIG_SPU_FS) += spu_callbacks.o 12spufs-builtin-$(CONFIG_SPU_FS) += spu_callbacks.o spu_base.o spu_priv1.o spufs/
16obj-y += $(spufs-builtin-y) $(spufs-builtin-m) 13obj-y += $(spufs-builtin-y) $(spufs-builtin-m)
17