From 92445eaaadc1f03f5a177ecc957bda76bf2ba8d5 Mon Sep 17 00:00:00 2001 From: Roman Zippel Date: Sun, 25 Jun 2006 05:46:58 -0700 Subject: [PATCH] m68k: separate handler for auto and user vector interrupt Use separate entry points for auto and user vector interrupts and cleanup naming a little. Signed-off-by: Roman Zippel Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- include/asm-m68k/traps.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include/asm-m68k') diff --git a/include/asm-m68k/traps.h b/include/asm-m68k/traps.h index 475056191252..771519473285 100644 --- a/include/asm-m68k/traps.h +++ b/include/asm-m68k/traps.h @@ -13,8 +13,15 @@ #ifndef __ASSEMBLY__ +#include +#include + typedef void (*e_vector)(void); +asmlinkage void auto_inthandler(void); +asmlinkage void mach_inthandler(void); +asmlinkage void bad_inthandler(void); + extern e_vector vectors[]; #endif -- cgit v1.2.3-59-g8ed1b