]> Git Repo - linux.git/commitdiff
scsi: a100u2w: trivial typo in printk
authorColin Ian King <[email protected]>
Wed, 29 Jul 2015 18:19:45 +0000 (19:19 +0100)
committerJiri Kosina <[email protected]>
Fri, 7 Aug 2015 13:03:42 +0000 (15:03 +0200)
Trivial typo fix, \b should be \n

Signed-off-by: Colin Ian King <[email protected]>
Reviewed-by: Hannes Reinecke <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
drivers/scsi/a100u2w.c

index cac6b37d7b1b77baf9225b5ee8fb441480a0704c..8086bd0ac9fd10165098ecaa354ed52287818ebb 100644 (file)
@@ -888,7 +888,7 @@ static int inia100_build_scb(struct orc_host * host, struct orc_scb * scb, struc
        scb->sense_len = SENSE_SIZE;
        scb->cdb_len = cmd->cmd_len;
        if (scb->cdb_len >= IMAX_CDB) {
-               printk("max cdb length= %x\b", cmd->cmd_len);
+               printk("max cdb length= %x\n", cmd->cmd_len);
                scb->cdb_len = IMAX_CDB;
        }
        scb->ident = (u8)(cmd->device->lun & 0xff) | DISC_ALLOW;
This page took 0.056924 seconds and 4 git commands to generate.