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

Commit ad92b542 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "arm64: process: use continuation prints for show_data" into msm-next

parents cb0ce810 106b4328
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -208,11 +208,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");
	}
}