[PATCH 7/8] kprobes/MN10300: Fix %p uses in error messages

From: Masami Hiramatsu
Date: Thu Jan 25 2018 - 00:30:35 EST


Replace %p with %px because it is right before BUG().

Signed-off-by: Masami Hiramatsu <mhiramat@xxxxxxxxxx>
---
arch/mn10300/kernel/kprobes.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/mn10300/kernel/kprobes.c b/arch/mn10300/kernel/kprobes.c
index 0311a7fcea16..e539fac00321 100644
--- a/arch/mn10300/kernel/kprobes.c
+++ b/arch/mn10300/kernel/kprobes.c
@@ -632,9 +632,9 @@ int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)

if (addr == (u8 *) jprobe_return_bp_addr) {
if (jprobe_saved_regs_location != regs) {
- printk(KERN_ERR"JPROBE:"
- " Current regs (%p) does not match saved regs"
- " (%p).\n",
+ pr_err("JPROBE:"
+ " Current regs (%px) does not match saved regs"
+ " (%px).\n",
regs, jprobe_saved_regs_location);
BUG();
}