diff options
author | Robin Getz <robin.getz@analog.com> | 2010-03-11 16:24:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-05-21 09:40:17 -0400 |
commit | 2a12c4632db1c0c548a7023e63869b27c7789a92 (patch) | |
tree | 518ec2b9379886d5fe7301cf3d5eed959f0452ca /arch/blackfin/kernel/Makefile | |
parent | bb84dbf69b0730fcc78c275f900ed74b2b8453a5 (diff) | |
download | kernel_samsung_tuna-2a12c4632db1c0c548a7023e63869b27c7789a92.zip kernel_samsung_tuna-2a12c4632db1c0c548a7023e63869b27c7789a92.tar.gz kernel_samsung_tuna-2a12c4632db1c0c548a7023e63869b27c7789a92.tar.bz2 |
Blackfin: split kernel/traps.c
The current kernel/traps.c file has grown a bit unwieldy as more debugging
functionality has been added over time, so split it up into more logical
files. There should be no functional changes here, just minor whitespace
tweaking. This should make future extensions easier to manage.
Signed-off-by: Robin Getz <robin.getz@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/kernel/Makefile')
-rw-r--r-- | arch/blackfin/kernel/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/blackfin/kernel/Makefile b/arch/blackfin/kernel/Makefile index 346a421..b32a04a 100644 --- a/arch/blackfin/kernel/Makefile +++ b/arch/blackfin/kernel/Makefile @@ -7,7 +7,8 @@ extra-y := init_task.o vmlinux.lds obj-y := \ entry.o process.o bfin_ksyms.o ptrace.o setup.o signal.o \ sys_bfin.o traps.o irqchip.o dma-mapping.o flat.o \ - fixed_code.o reboot.o bfin_gpio.o bfin_dma_5xx.o + fixed_code.o reboot.o bfin_gpio.o bfin_dma_5xx.o \ + trace.o exception.o dumpstack.o ifeq ($(CONFIG_GENERIC_CLOCKEVENTS),y) obj-y += time-ts.o |