From mboxrd@z Thu Jan 1 00:00:00 1970 From: will.deacon@arm.com (Will Deacon) Date: Tue, 10 Jan 2017 12:36:48 +0000 Subject: [PATCH] arm64: add missing printk newlines In-Reply-To: <1483971216-11781-1-git-send-email-mark.rutland@arm.com> References: <1483971216-11781-1-git-send-email-mark.rutland@arm.com> Message-ID: <20170110123648.GE21598@arm.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon, Jan 09, 2017 at 02:13:36PM +0000, Mark Rutland wrote: > A few printk calls in arm64 omit a trailing newline, even though there > is no subsequent KERN_CONT printk associated with them, and we actually > want a newline. > > This can result in unrelated lines being appended, rather than appearing > on a new line. Additionally, timestamp prefixes may appear in-line. This > makes the logs harder to read than necessary. > > Avoid this by adding a trailing newline. > > These were found with a shortlist generated by: > > $ git grep 'pr\(intk\|_.*\)(.*)' -- arch/arm64 | grep -v pr_fmt | grep -v '\\n"' > > Signed-off-by: Mark Rutland > CC: James Morse > Cc: Catalin Marinas > Cc: Will Deacon > --- > arch/arm64/kernel/armv8_deprecated.c | 2 +- > arch/arm64/kernel/hibernate.c | 6 +++--- > 2 files changed, 4 insertions(+), 4 deletions(-) Applied for 4.11. Will