All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scsi: a100u2w: trivial typo in printk
@ 2015-07-29 18:19 Colin King
  2015-07-29 18:39 ` [PATCH] scsi: pmcraid: " Joe Perches
  2015-07-30  6:54 ` [PATCH] scsi: a100u2w: " Hannes Reinecke
  0 siblings, 2 replies; 4+ messages in thread
From: Colin King @ 2015-07-29 18:19 UTC (permalink / raw)
  To: James E.J. Bottomley, Jiri Kosina, linux-scsi; +Cc: linux-kernel

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

Trivial typo fix, \b should be \n

Signed-off-by: Colin Ian King <colin.king@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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] scsi: pmcraid: trivial typo in printk
  2015-07-29 18:19 [PATCH] scsi: a100u2w: trivial typo in printk Colin King
@ 2015-07-29 18:39 ` Joe Perches
  2015-07-30  6:54   ` Hannes Reinecke
  2015-07-30  6:54 ` [PATCH] scsi: a100u2w: " Hannes Reinecke
  1 sibling, 1 reply; 4+ messages in thread
From: Joe Perches @ 2015-07-29 18:39 UTC (permalink / raw)
  To: Colin King, Anil Ravindranath
  Cc: James E.J. Bottomley, Jiri Kosina, linux-scsi, linux-kernel

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(-)

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 {



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] scsi: a100u2w: trivial typo in printk
  2015-07-29 18:19 [PATCH] scsi: a100u2w: trivial typo in printk Colin King
  2015-07-29 18:39 ` [PATCH] scsi: pmcraid: " Joe Perches
@ 2015-07-30  6:54 ` Hannes Reinecke
  1 sibling, 0 replies; 4+ messages in thread
From: Hannes Reinecke @ 2015-07-30  6:54 UTC (permalink / raw)
  To: Colin King, James E.J. Bottomley, Jiri Kosina, linux-scsi; +Cc: linux-kernel

On 07/29/2015 08:19 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> Trivial typo fix, \b should be \n
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
Reviewed-by: Hannes Reinecke <hare@suse.com>

Cheers,

Hannes
-- 
Dr. Hannes Reinecke		               zSeries & Storage
hare@suse.de			               +49 911 74053 688
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: F. Imendörffer, J. Smithard, J. Guild, D. Upmanyu, G. Norton
HRB 21284 (AG Nürnberg)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] scsi: pmcraid: trivial typo in printk
  2015-07-29 18:39 ` [PATCH] scsi: pmcraid: " Joe Perches
@ 2015-07-30  6:54   ` Hannes Reinecke
  0 siblings, 0 replies; 4+ messages in thread
From: Hannes Reinecke @ 2015-07-30  6:54 UTC (permalink / raw)
  To: Joe Perches, Colin King, Anil Ravindranath
  Cc: James E.J. Bottomley, Jiri Kosina, linux-scsi, linux-kernel

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
-- 
Dr. Hannes Reinecke		               zSeries & Storage
hare@suse.de			               +49 911 74053 688
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: F. Imendörffer, J. Smithard, J. Guild, D. Upmanyu, G. Norton
HRB 21284 (AG Nürnberg)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-07-30  6:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-29 18:19 [PATCH] scsi: a100u2w: trivial typo in printk Colin King
2015-07-29 18:39 ` [PATCH] scsi: pmcraid: " Joe Perches
2015-07-30  6:54   ` Hannes Reinecke
2015-07-30  6:54 ` [PATCH] scsi: a100u2w: " Hannes Reinecke

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.