Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: gs_fpgaboot: pr_err() strings should end with newlines

pr_err() messages should end with a new-line to avoid other messages
being concatenated.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Arvind Yadav and committed by
Greg Kroah-Hartman
fe5625b3 b9fd63ea

+1 -1
+1 -1
drivers/staging/gs_fpgaboot/gs_fpgaboot.c
··· 106 106 read_bitstream(bitdata, buf, offset, 13); 107 107 r = memcmp(buf, bits_magic, 13); 108 108 if (r) { 109 - pr_err("error: corrupted header"); 109 + pr_err("error: corrupted header\n"); 110 110 return -EINVAL; 111 111 } 112 112 pr_info("bitstream file magic number Ok\n");