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:
parent
ebbe768c83
commit
825bb2c97c
1 changed files with 2 additions and 2 deletions
|
@ -212,11 +212,11 @@ static void show_data(unsigned long addr, int nbytes, const char *name)
|
||||||
if (probe_kernel_address(p, data)) {
|
if (probe_kernel_address(p, data)) {
|
||||||
printk(" ********");
|
printk(" ********");
|
||||||
} else {
|
} else {
|
||||||
printk(" %08x", data);
|
pr_cont(" %08x", data);
|
||||||
}
|
}
|
||||||
++p;
|
++p;
|
||||||
}
|
}
|
||||||
printk("\n");
|
pr_cont("\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue