Commit 024b58f3 authored by Stafford Horne's avatar Stafford Horne
Browse files

openrisc/traps: Declare unhandled_exception for asmlinkage



Noticed this when workin on warnings.  As unhandled_exception is used in
entry.S we should attribute it with asmlinkage.

Signed-off-by: default avatarStafford Horne <shorne@gmail.com>
parent de901d12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -235,7 +235,7 @@ void __noreturn die(const char *str, struct pt_regs *regs, long err)
	make_task_dead(SIGSEGV);
}

void unhandled_exception(struct pt_regs *regs, int ea, int vector)
asmlinkage void unhandled_exception(struct pt_regs *regs, int ea, int vector)
{
	printk("Unable to handle exception at EA =0x%x, vector 0x%x",
	       ea, vector);