From: Colin Ian King <colin.k...@canonical.com>

Trivial typo fix, \b should be \n

Signed-off-by: Colin Ian King <colin.k...@canonical.com>
---
 drivers/scsi/a100u2w.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/a100u2w.c b/drivers/scsi/a100u2w.c
index cac6b37..8086bd0 100644
--- a/drivers/scsi/a100u2w.c
+++ b/drivers/scsi/a100u2w.c
@@ -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;
-- 
2.4.6

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to