Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29c350bf authored by Russell King's avatar Russell King
Browse files

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



The array was missing the final entry for the undefined instruction
exception handler; this commit adds it.

Cc: <stable@vger.kernel.org>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent d2eca20d
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -36,7 +36,13 @@
#include <asm/system_misc.h>
#include <asm/opcodes.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;