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

Commit ea8a5ce3 authored by Trilok Soni's avatar Trilok Soni Committed by Gerrit - the friendly Code Review server
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.

Change-Id: I41c48e090ec4c44aeccd0e8fbbcb814b55c0416d
Signed-off-by: default avatarTrilok Soni <tsoni@codeaurora.org>
parent 893c7d56
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -204,11 +204,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");
	}
}