diff options
Diffstat (limited to 'arch/tile/kernel/traps.c')
-rw-r--r-- | arch/tile/kernel/traps.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/tile/kernel/traps.c b/arch/tile/kernel/traps.c index 86900ccd4977..bf841ca517bb 100644 --- a/arch/tile/kernel/traps.c +++ b/arch/tile/kernel/traps.c | |||
@@ -46,9 +46,9 @@ static int __init setup_unaligned_fixup(char *str) | |||
46 | return 0; | 46 | return 0; |
47 | 47 | ||
48 | pr_info("Fixups for unaligned data accesses are %s\n", | 48 | pr_info("Fixups for unaligned data accesses are %s\n", |
49 | unaligned_fixup >= 0 ? | 49 | unaligned_fixup >= 0 ? |
50 | (unaligned_fixup ? "enabled" : "disabled") : | 50 | (unaligned_fixup ? "enabled" : "disabled") : |
51 | "completely disabled"); | 51 | "completely disabled"); |
52 | return 1; | 52 | return 1; |
53 | } | 53 | } |
54 | __setup("unaligned_fixup=", setup_unaligned_fixup); | 54 | __setup("unaligned_fixup=", setup_unaligned_fixup); |
@@ -305,8 +305,8 @@ void __kprobes do_trap(struct pt_regs *regs, int fault_num, | |||
305 | case INT_ILL: | 305 | case INT_ILL: |
306 | if (copy_from_user(&instr, (void __user *)regs->pc, | 306 | if (copy_from_user(&instr, (void __user *)regs->pc, |
307 | sizeof(instr))) { | 307 | sizeof(instr))) { |
308 | pr_err("Unreadable instruction for INT_ILL:" | 308 | pr_err("Unreadable instruction for INT_ILL: %#lx\n", |
309 | " %#lx\n", regs->pc); | 309 | regs->pc); |
310 | do_exit(SIGKILL); | 310 | do_exit(SIGKILL); |
311 | return; | 311 | return; |
312 | } | 312 | } |