ARM: 6745/1: kprobes insn decoding fix

Marcin Slusarz says:

> In arch/arm/kernel/kprobes-decode.c there's a function
> arm_kprobe_decode_insn which does:
>
> } else if ((insn & 0x0e000000) == 0x0c400000) {
> ...
>
> This is always false, so code below is dead.
> I found this bug by coccinelle (http://coccinelle.lip6.fr/).

Reported-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Nicolas Pitre and committed by Russell King 5a5af730 58e9c47f

+1 -1
+1 -1
arch/arm/kernel/kprobes-decode.c
··· 1437 1437 1438 1438 return space_cccc_1100_010x(insn, asi); 1439 1439 1440 - } else if ((insn & 0x0e000000) == 0x0c400000) { 1440 + } else if ((insn & 0x0e000000) == 0x0c000000) { 1441 1441 1442 1442 return space_cccc_110x(insn, asi); 1443 1443