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>
This commit is contained in:
parent
b9fd63ea2b
commit
fe5625b396
|
@ -106,7 +106,7 @@ static int readmagic_bitstream(u8 *bitdata, int *offset)
|
|||
read_bitstream(bitdata, buf, offset, 13);
|
||||
r = memcmp(buf, bits_magic, 13);
|
||||
if (r) {
|
||||
pr_err("error: corrupted header");
|
||||
pr_err("error: corrupted header\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
pr_info("bitstream file magic number Ok\n");
|
||||
|
|
Loading…
Reference in New Issue