diff options
author | Greg Ungerer <gerg@uclinux.org> | 2011-06-24 08:15:40 +0200 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2011-10-18 06:22:25 +0200 |
commit | bc4f4ac2f09a0681b4bd10e698e7f0c6e5137ca0 (patch) | |
tree | 777e85d8f95ea1f8c39e46a2927aea9d284adec9 /arch/m68k/kernel/Makefile | |
parent | m68k: merge mmu and non-mmu include/asm/entry.h files (diff) | |
download | linux-bc4f4ac2f09a0681b4bd10e698e7f0c6e5137ca0.tar.xz linux-bc4f4ac2f09a0681b4bd10e698e7f0c6e5137ca0.zip |
m68k: move hardware vector setting from traps.c to its own file
Most of the trap.c code is general to all m68k arch members. But the code
it currently contains to set the hardware vector table is quite specific to
the 680x0 family. They can have the vector table at any address unlike
other family members (which either support only a single fixed address,
or a limited range of addresses). So lets move that code out to a new file,
vectors.c. This will make sharing the rest of the trap.c code easier and
cleaner.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k/kernel/Makefile')
-rw-r--r-- | arch/m68k/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/kernel/Makefile b/arch/m68k/kernel/Makefile index ca686708ae08..e7f0f2e5ad44 100644 --- a/arch/m68k/kernel/Makefile +++ b/arch/m68k/kernel/Makefile @@ -9,7 +9,7 @@ extra-y += vmlinux.lds obj-y := entry.o m68k_ksyms.o module.o process.o ptrace.o setup.o signal.o \ sys_m68k.o syscalltable.o time.o traps.o -obj-$(CONFIG_MMU) += ints.o devres.o +obj-$(CONFIG_MMU) += ints.o devres.o vectors.o devres-$(CONFIG_MMU) = ../../../kernel/irq/devres.o ifndef CONFIG_MMU_SUN3 |