1 /* 2 * Copyright (C) 2000, 2001 Paolo Alberelli 3 * Copyright (C) 2003 Paul Mundt 4 * Copyright (C) 2004 Richard Curnow 5 * 6 * This file is subject to the terms and conditions of the GNU General Public 7 * License. See the file "COPYING" in the main directory of this archive 8 * for more details. 9 */ 10 #ifndef __ASM_SH_TRAPS_64_H 11 #define __ASM_SH_TRAPS_64_H 12 13 extern void phys_stext(void); 14 trigger_address_error(void)15static inline void trigger_address_error(void) 16 { 17 phys_stext(); 18 } 19 20 #define BUILD_TRAP_HANDLER(name) \ 21 asmlinkage void name##_trap_handler(unsigned int vec, struct pt_regs *regs) 22 #define TRAP_HANDLER_DECL 23 24 #endif /* __ASM_SH_TRAPS_64_H */ 25