]> git.karo-electronics.de Git - karo-tx-linux.git/commit
m68k: move hardware vector setting from traps.c to its own file
authorGreg Ungerer <gerg@uclinux.org>
Fri, 24 Jun 2011 06:15:40 +0000 (16:15 +1000)
committerGreg Ungerer <gerg@uclinux.org>
Fri, 19 Aug 2011 06:23:58 +0000 (16:23 +1000)
commitd89082d2e0e8c9a220de75e9d04b3258b21ed6d1
treea50e5f4a0de8d9db38c271d498be6cd2d0a90c41
parent823e2717ec3d9ce4a2c738bb9b125032edd0b4f7
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,
ectors.c. This will make sharing the rest of the trap.c code easier and
cleaner.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
arch/m68k/kernel/Makefile
arch/m68k/kernel/traps_mm.c
arch/m68k/kernel/vectors.c [new file with mode: 0644]