]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mtd: lpddr: Remove space before newline
authorColin Ian King <colin.i.king@gmail.com>
Thu, 31 Jul 2025 09:52:47 +0000 (10:52 +0100)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Thu, 11 Sep 2025 15:34:15 +0000 (17:34 +0200)
There is an extraneous space before a newline in a handful of printk
messages. Remove the spaces.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
drivers/mtd/lpddr/lpddr_cmds.c
drivers/mtd/lpddr/qinfo_probe.c

index 14e36ae71958f9b3436e1b868a9843981304c947..290fd0119e984110b82068017fa5a9b7a6edc71e 100644 (file)
@@ -142,7 +142,7 @@ static int wait_for_ready(struct map_info *map, struct flchip *chip,
                if (dsr & DSR_READY_STATUS)
                        break;
                if (!timeo) {
-                       printk(KERN_ERR "%s: Flash timeout error state %d \n",
+                       printk(KERN_ERR "%s: Flash timeout error state %d\n",
                                                        map->name, chip_state);
                        ret = -ETIME;
                        break;
@@ -186,7 +186,7 @@ static int wait_for_ready(struct map_info *map, struct flchip *chip,
        if (dsr & DSR_ERR) {
                /* Clear DSR*/
                map_write(map, CMD(~(DSR_ERR)), map->pfow_base + PFOW_DSR);
-               printk(KERN_WARNING"%s: Bad status on wait: 0x%x \n",
+               printk(KERN_WARNING"%s: Bad status on wait: 0x%x\n",
                                map->name, dsr);
                print_drs_error(dsr);
                ret = -EIO;
@@ -321,7 +321,7 @@ static int chip_ready(struct map_info *map, struct flchip *chip, int mode)
                        /* Resume and pretend we weren't here.  */
                        put_chip(map, chip);
                        printk(KERN_ERR "%s: suspend operation failed."
-                                       "State may be wrong \n", map->name);
+                                       "State may be wrong\n", map->name);
                        return -EIO;
                }
                chip->erase_suspended = 1;
@@ -468,7 +468,7 @@ static int do_write_buffer(struct map_info *map, struct flchip *chip,
        chip->state = FL_WRITING;
        ret = wait_for_ready(map, chip, (1<<lpddr->qinfo->ProgBufferTime));
        if (ret)        {
-               printk(KERN_WARNING"%s Buffer program error: %d at %lx\n",
+               printk(KERN_WARNING"%s Buffer program error: %d at %lx\n",
                        map->name, ret, adr);
                goto out;
        }
@@ -736,7 +736,7 @@ static int do_xxlock(struct mtd_info *mtd, loff_t adr, uint32_t len, int thunk)
 
        ret = wait_for_ready(map, chip, 1);
        if (ret)        {
-               printk(KERN_ERR "%s: block unlock error status %d \n",
+               printk(KERN_ERR "%s: block unlock error status %d\n",
                                map->name, ret);
                goto out;
        }
index 137ae5f0a19b255608d1cedb5f07919d0dc84429..42281e460c62e54026f8a2c8ebb546cfed87d01d 100644 (file)
@@ -55,7 +55,7 @@ static long lpddr_get_qinforec_pos(struct map_info *map, char *id_str)
                        return minor | (major << bankwidth);
                }
        }
-       printk(KERN_ERR"%s qinfo id string is wrong! \n", map->name);
+       printk(KERN_ERR"%s qinfo id string is wrong!\n", map->name);
        BUG();
        return -1;
 }
@@ -112,7 +112,7 @@ static int lpddr_pfow_present(struct map_info *map, struct lpddr_private *lpddr)
 
        return 1;       /* "PFOW" is found */
 out:
-       printk(KERN_WARNING"%s: PFOW string at 0x%lx is not found \n",
+       printk(KERN_WARNING"%s: PFOW string at 0x%lx is not found\n",
                                        map->name, map->pfow_base);
        return 0;
 }