summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2017-10-15 13:16:31 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2017-10-16 09:02:00 +0200
commit81d6f55f4d05c781d77751f577ed488a314b4bb9 (patch)
tree63d077f28db958e89501de2b72d03c1098808f0f
parentb5289b742a890a31e8b3fc1706774514dcbe1238 (diff)
downloadbarebox-81d6f55f4d05c781d77751f577ed488a314b4bb9.tar.gz
barebox-81d6f55f4d05c781d77751f577ed488a314b4bb9.tar.xz
UBI: attach: add missing newline at end of pr_err()
This patch adds the missing newline at the end of the pr_err() statement. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--drivers/mtd/ubi/attach.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/attach.c b/drivers/mtd/ubi/attach.c
index b49842be39..ff4b4e7acb 100644
--- a/drivers/mtd/ubi/attach.c
+++ b/drivers/mtd/ubi/attach.c
@@ -782,7 +782,7 @@ static int check_corruption(struct ubi_device *ubi, struct ubi_vid_hdr *vid_hdr,
pnum);
ubi_err(ubi, "this may be a non-UBI PEB or a severe VID header corruption which requires manual inspection");
ubi_dump_vid_hdr(vid_hdr);
- pr_err("hexdump of PEB %d offset %d, length %d",
+ pr_err("hexdump of PEB %d offset %d, length %d\n",
pnum, ubi->leb_start, ubi->leb_size);
ubi_dbg_print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 1,
ubi->peb_buf, ubi->leb_size, 1);