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 <tsoni@codeaurora.org>
This commit is contained in:
Trilok Soni 2016-05-01 15:38:50 -07:00 committed by Jeevan Shriram
parent ebbe768c83
commit 825bb2c97c

View file

@ -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");
}
}