ubi: pr_err() strings should end with newlines
authorBen Dooks <ben.dooks@codethink.co.uk>
Wed, 26 Jul 2017 09:53:50 +0000 (10:53 +0100)
committerRichard Weinberger <richard@nod.at>
Wed, 13 Sep 2017 20:05:30 +0000 (22:05 +0200)
In build.c, the following pr_err calls should be terminated with
a new-line to avoid other messages being concatenated onto the end.

Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
drivers/mtd/ubi/block.c

index c3963f8..b210fdb 100644 (file)
@@ -383,7 +383,7 @@ int ubiblock_create(struct ubi_volume_info *vi)
        /* Initialize the gendisk of this ubiblock device */
        gd = alloc_disk(1);
        if (!gd) {
-               pr_err("UBI: block: alloc_disk failed");
+               pr_err("UBI: block: alloc_disk failed\n");
                ret = -ENODEV;
                goto out_free_dev;
        }
@@ -607,7 +607,7 @@ static void __init ubiblock_create_from_param(void)
                desc = open_volume_desc(p->name, p->ubi_num, p->vol_id);
                if (IS_ERR(desc)) {
                        pr_err(
-                              "UBI: block: can't open volume on ubi%d_%d, err=%ld",
+                              "UBI: block: can't open volume on ubi%d_%d, err=%ld\n",
                               p->ubi_num, p->vol_id, PTR_ERR(desc));
                        continue;
                }
@@ -618,7 +618,7 @@ static void __init ubiblock_create_from_param(void)
                ret = ubiblock_create(&vi);
                if (ret) {
                        pr_err(
-                              "UBI: block: can't add '%s' volume on ubi%d_%d, err=%d",
+                              "UBI: block: can't add '%s' volume on ubi%d_%d, err=%d\n",
                               vi.name, p->ubi_num, p->vol_id, ret);
                        continue;
                }