Commit 26009d65 authored by Russell King's avatar Russell King Committed by Greg Kroah-Hartman

ARM: fix "bad mode in ... handler" message for undefined instructions

commit 29c350bf upstream.

The array was missing the final entry for the undefined instruction
exception handler; this commit adds it.
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 32956a06
......@@ -35,7 +35,13 @@
#include <asm/tls.h>
#include <asm/system_misc.h>
static const char *handler[]= { "prefetch abort", "data abort", "address exception", "interrupt" };
static const char *handler[]= {
"prefetch abort",
"data abort",
"address exception",
"interrupt",
"undefined instruction",
};
void *vectors_page;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment