aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2010-01-28 15:21:42 +0100
committerRalf Baechle <ralf@linux-mips.org>2010-02-27 12:53:19 +0100
commit2d1b6e95515d63030b6e002125799f2aa52a9d27 (patch)
treef71b34367fb2599f9f3d9ca243db3956a17b6585 /arch/mips/kernel
parentMIPS: Move arch/mips/mm/uasm.h to arch/mips/include/asm/uasm.h (diff)
downloadlinux-dev-2d1b6e95515d63030b6e002125799f2aa52a9d27.tar.xz
linux-dev-2d1b6e95515d63030b6e002125799f2aa52a9d27.zip
MIPS: Annotate set_except_vector with __init
All call sites of set_except_vector are already annotated with __init, so annotate that one too. Signed-off-by: Regards, Florian Fainelli <florian@openwrt.org> To: linux-mips@linux-mips.org To: David Daney <ddaney@caviumnetworks.com> Patchwork: http://patchwork.linux-mips.org/patch/888/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r--arch/mips/kernel/traps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c
index 31b204b26ba0..b417e2727050 100644
--- a/arch/mips/kernel/traps.c
+++ b/arch/mips/kernel/traps.c
@@ -1276,7 +1276,7 @@ unsigned long vi_handlers[64];
* to interrupt handlers in the address range from
* KSEG0 <= x < KSEG0 + 256mb on the Nevada. Oh well ...
*/
-void *set_except_vector(int n, void *addr)
+void __init *set_except_vector(int n, void *addr)
{
unsigned long handler = (unsigned long) addr;
unsigned long old_handler = exception_handlers[n];