floppy: format block0 read error message properly
authorJiri Kosina <jkosina@suse.cz>
Wed, 18 Jun 2014 11:44:18 +0000 (13:44 +0200)
committerJiri Kosina <jkosina@suse.cz>
Wed, 18 Jun 2014 11:44:18 +0000 (13:44 +0200)
In case reading of block 0 fails, line without trailing newline
is printed causing dmesg to look horrible.

Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/block/floppy.c

index 8e767bb..f0c95df 100644 (file)
@@ -3774,7 +3774,7 @@ static void floppy_rb0_cb(struct bio *bio, int err)
        int drive = cbdata->drive;
 
        if (err) {
-               pr_info("floppy: error %d while reading block 0", err);
+               pr_info("floppy: error %d while reading block 0\n", err);
                set_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags);
        }
        complete(&cbdata->complete);