From 825bb2c97c2b10d7a3fb1fb7f909919586d55728 Mon Sep 17 00:00:00 2001 From: Trilok Soni Date: Sun, 1 May 2016 15:38:50 -0700 Subject: [PATCH] arm64: process: Use continuation prints for show_data show_data messages for the value at the addresses needs to printed in the continuation. CRs-Fixed: 1010438 Change-Id: I41c48e090ec4c44aeccd0e8fbbcb814b55c0416d Signed-off-by: Trilok Soni --- arch/arm64/kernel/process.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm64/kernel/process.c b/arch/arm64/kernel/process.c index 6e8d6fd5440b..129fb3f8c322 100644 --- a/arch/arm64/kernel/process.c +++ b/arch/arm64/kernel/process.c @@ -212,11 +212,11 @@ static void show_data(unsigned long addr, int nbytes, const char *name) if (probe_kernel_address(p, data)) { printk(" ********"); } else { - printk(" %08x", data); + pr_cont(" %08x", data); } ++p; } - printk("\n"); + pr_cont("\n"); } }