diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-11 08:08:12 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-11 08:08:12 -0400 |
commit | fd582ec88eb8d2d907876603e4ecebe6eab330d9 (patch) | |
tree | bafacc1916098001051b8235722daa6b9b52e63a /arch/ppc/Makefile | |
parent | 35d81a4bfe28a6ea81c9f67c9ce40543124ded0b (diff) |
ppc: Various minor compile fixes
This fixes up a variety of minor problems in compiling with ARCH=ppc
arising from using the merged versions of various header files.
A lot of the changes are just adding #include <asm/machdep.h> to
files that use ppc_md or smp_ops_t.
This also arranges for us to use semaphore.c, vecemu.c, vector.S and
fpu.S from arch/powerpc/kernel when compiling with ARCH=ppc.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc/Makefile')
-rw-r--r-- | arch/ppc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/ppc/Makefile b/arch/ppc/Makefile index 90c750227ed9..aedc9ae13b2a 100644 --- a/arch/ppc/Makefile +++ b/arch/ppc/Makefile | |||
@@ -57,9 +57,10 @@ head-$(CONFIG_FSL_BOOKE) := arch/ppc/kernel/head_fsl_booke.o | |||
57 | 57 | ||
58 | head-$(CONFIG_6xx) += arch/ppc/kernel/idle_6xx.o | 58 | head-$(CONFIG_6xx) += arch/ppc/kernel/idle_6xx.o |
59 | head-$(CONFIG_POWER4) += arch/ppc/kernel/idle_power4.o | 59 | head-$(CONFIG_POWER4) += arch/ppc/kernel/idle_power4.o |
60 | head-$(CONFIG_PPC_FPU) += arch/ppc/kernel/fpu.o | 60 | head-$(CONFIG_PPC_FPU) += arch/powerpc/kernel/fpu.o |
61 | 61 | ||
62 | core-y += arch/ppc/kernel/ arch/ppc/platforms/ \ | 62 | core-y += arch/ppc/kernel/ arch/powerpc/kernel/ \ |
63 | arch/ppc/platforms/ \ | ||
63 | arch/ppc/mm/ arch/ppc/lib/ arch/ppc/syslib/ | 64 | arch/ppc/mm/ arch/ppc/lib/ arch/ppc/syslib/ |
64 | core-$(CONFIG_4xx) += arch/ppc/platforms/4xx/ | 65 | core-$(CONFIG_4xx) += arch/ppc/platforms/4xx/ |
65 | core-$(CONFIG_83xx) += arch/ppc/platforms/83xx/ | 66 | core-$(CONFIG_83xx) += arch/ppc/platforms/83xx/ |