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

Commit 41c70fb7 authored by Trilok Soni's avatar Trilok Soni Committed by Rishabh Bhatnagar
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>
Signed-off-by: default avatarRishabh Bhatnagar <rishabhb@codeaurora.org>
parent f5f31790
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -250,12 +250,12 @@ static void show_data(unsigned long addr, int nbytes, const char *name)
			u32	data;

			if (probe_kernel_address(p, data))
				printk(KERN_DEBUG " ********");
				pr_cont(" ********");
			else
				printk(KERN_DEBUG " %08x", data);
				pr_cont(" %08x", data);
			++p;
		}
		printk(KERN_DEBUG "\n");
		pr_cont("\n");
	}
}