diff options
author | Alexander van Heukelum <heukelum@fastmail.fm> | 2008-10-03 20:00:40 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-13 08:33:29 (GMT) |
commit | 8728861b4fead8119a1b7bb856a387320859cd98 (patch) | |
tree | 03acdb0dccde800696409b6f59f8d5248c4da0f6 /arch/x86/kernel/Makefile | |
parent | 081f75bbdc86de53537e1b5aca01de72bd2fea6b (diff) | |
download | linux-8728861b4fead8119a1b7bb856a387320859cd98.tar.xz |
traps: x86: finalize unification of traps.c
traps_32.c and traps_64.c are now equal. Move one to traps.c,
delete the other one and change the Makefile
Signed-off-by: Alexander van Heukelum <heukelum@fastmail.fm>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/Makefile')
-rw-r--r-- | arch/x86/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index de63fed..0d41f03 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile @@ -23,7 +23,7 @@ CFLAGS_hpet.o := $(nostackp) CFLAGS_tsc.o := $(nostackp) obj-y := process_$(BITS).o signal_$(BITS).o entry_$(BITS).o -obj-y += traps_$(BITS).o irq_$(BITS).o dumpstack_$(BITS).o +obj-y += traps.o irq_$(BITS).o dumpstack_$(BITS).o obj-y += time_$(BITS).o ioport.o ldt.o obj-y += setup.o i8259.o irqinit_$(BITS).o setup_percpu.o obj-$(CONFIG_X86_VISWS) += visws_quirks.o |