diff mbox

scsi: pmcraid: trivial typo in printk

Message ID 1438195153.30877.3.camel@perches.com (mailing list archive)
State New, archived
Headers show

Commit Message

Joe Perches July 29, 2015, 6:39 p.m. UTC
Trivial typo fixes:

o \b should be \n
o coalesce format to avoid excess spaces

Signed-off-by: Joe Perches <joe@perches.com>
---
And another here:

 drivers/scsi/pmcraid.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)



--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Hannes Reinecke July 30, 2015, 6:54 a.m. UTC | #1
On 07/29/2015 08:39 PM, Joe Perches wrote:
> Trivial typo fixes:
> 
> o \b should be \n
> o coalesce format to avoid excess spaces
> 
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
Reviewed-by: Hannes Reinecke <hare@suse.com>

Cheers,

Hannes
diff mbox

Patch

diff --git a/drivers/scsi/pmcraid.c b/drivers/scsi/pmcraid.c
index ed31d8c..b421de2 100644
--- a/drivers/scsi/pmcraid.c
+++ b/drivers/scsi/pmcraid.c
@@ -1558,8 +1558,7 @@  static void pmcraid_handle_config_change(struct pmcraid_instance *pinstance)
 	cfg_entry = &ccn_hcam->cfg_entry;
 	fw_version = be16_to_cpu(pinstance->inq_data->fw_version);
 
-	pmcraid_info("CCN(%x): %x timestamp: %llx type: %x lost: %x flags: %x \
-		 res: %x:%x:%x:%x\n",
+	pmcraid_info("CCN(%x): %x timestamp: %llx type: %x lost: %x flags: %x res: %x:%x:%x:%x\n",
 		 pinstance->ccn.hcam->ilid,
 		 pinstance->ccn.hcam->op_code,
 		((pinstance->ccn.hcam->timestamp1) |
@@ -1583,7 +1582,7 @@  static void pmcraid_handle_config_change(struct pmcraid_instance *pinstance)
 	if (pinstance->ccn.hcam->notification_lost) {
 		cfgcmd = pmcraid_get_free_cmd(pinstance);
 		if (cfgcmd) {
-			pmcraid_info("lost CCN, reading config table\b");
+			pmcraid_info("lost CCN, reading config table\n");
 			pinstance->reinit_cfg_table = 1;
 			pmcraid_querycfg(cfgcmd);
 		} else {