Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 825bb2c9 authored by Trilok Soni's avatar Trilok Soni Committed by Jeevan Shriram
Browse files

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: default avatarTrilok Soni <tsoni@codeaurora.org>
parent ebbe768c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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");
	}
}