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

Commit e51457d9 authored by Trilok Soni's avatar Trilok Soni
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: I09595e6a876cdf5e1573aae9ebc8fb87fa358813
Signed-off-by: default avatarTrilok Soni <tsoni@codeaurora.org>
parent 04100cfe
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -237,11 +237,11 @@ static void show_data(unsigned long addr, int nbytes, const char *name)
				 probe_kernel_address(p, data)) {
				printk(" ********");
			} else {
				printk(" %016llx", data);
				printk(KERN_CONT " %016llx", data);
			}
			++p;
		}
		printk("\n");
		printk(KERN_CONT "\n");
	}
}