Re: [PATCH 44/59] drivers/scsi: Add missing "space"

2007-11-20 Thread Joe Perches
On Tue, 2007-11-20 at 10:39 +, Alistair John Strachan wrote:
> On Tuesday 20 November 2007 01:53:31 Joe Perches wrote:
> > diff --git a/drivers/scsi/NCR_D700.c b/drivers/scsi/NCR_D700.c
> > index 9e64b21..99403a6 100644
> > --- a/drivers/scsi/NCR_D700.c
> > +++ b/drivers/scsi/NCR_D700.c
> > @@ -182,7 +182,7 @@ NCR_D700_probe_one(struct NCR_D700_private *p, int
> > siop, int irq,
> >
> > hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL);
> > if (!hostdata) {
> > -   printk(KERN_ERR "NCR D700: SIOP%d: Failed to allocate host"
> > +   printk(KERN_ERR "NCR D700: SIOP%d: Failed to allocate host "
> >"data, detatching\n", siop);
> > return -ENOMEM;
> > }
> 
> If you're going to sneak in unrelated spelling/grammar changes, you might as 
> well do it unilaterally.

 drivers/scsi/NCR_D700.c|4 ++--
 drivers/scsi/aic7xxx_old.c |2 +-
 drivers/scsi/dc395x.c  |2 +-
 drivers/scsi/hosts.c   |2 +-
 drivers/scsi/iscsi_tcp.c   |6 +++---
 drivers/scsi/scsi_proc.c   |2 +-
 drivers/scsi/scsi_scan.c   |2 +-
 7 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/drivers/scsi/NCR_D700.c b/drivers/scsi/NCR_D700.c
index 9e64b21..36281c5 100644
--- a/drivers/scsi/NCR_D700.c
+++ b/drivers/scsi/NCR_D700.c
@@ -182,8 +182,8 @@ NCR_D700_probe_one(struct NCR_D700_private *p, int siop, 
int irq,
 
hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL);
if (!hostdata) {
-   printk(KERN_ERR "NCR D700: SIOP%d: Failed to allocate host"
-  "data, detatching\n", siop);
+   printk(KERN_ERR "NCR D700: SIOP%d: Failed to allocate host "
+  "data, detaching\n", siop);
return -ENOMEM;
}
 
diff --git a/drivers/scsi/aic7xxx_old.c b/drivers/scsi/aic7xxx_old.c
index 8f8db5f..c79a452 100644
--- a/drivers/scsi/aic7xxx_old.c
+++ b/drivers/scsi/aic7xxx_old.c
@@ -3716,7 +3716,7 @@ aic7xxx_pci_intr(struct aic7xxx_host *p)
   pci_read_config_byte(p->pdev, PCI_STATUS + 1, );
 
   if ( (status1 & DPE) && (aic7xxx_verbose & VERBOSE_MINOR_ERROR) )
-printk(WARN_LEAD "Data Parity Error during PCI address or PCI write"
+printk(WARN_LEAD "Data Parity Error during PCI address or PCI write "
   "phase.\n", p->host_no, -1, -1, -1);
   if ( (status1 & SSE) && (aic7xxx_verbose & VERBOSE_MINOR_ERROR) )
 printk(WARN_LEAD "Signal System Error Detected\n", p->host_no,
diff --git a/drivers/scsi/dc395x.c b/drivers/scsi/dc395x.c
index a9def6e..f98747c 100644
--- a/drivers/scsi/dc395x.c
+++ b/drivers/scsi/dc395x.c
@@ -1520,7 +1520,7 @@ static u8 start_scsi(struct AdapterCtlBlk* acb, struct 
DeviceCtlBlk* dcb,
}
 #endif
if (acb->active_dcb) {
-   dprintkl(KERN_DEBUG, "start_scsi: (pid#%li) Attempt to start a"
+   dprintkl(KERN_DEBUG, "start_scsi: (pid#%li) Attempt to start a "
"command while another command (pid#%li) is active.",
srb->cmd->serial_number,
acb->active_dcb->active_srb ?
diff --git a/drivers/scsi/hosts.c b/drivers/scsi/hosts.c
index 24271a8..b53f681 100644
--- a/drivers/scsi/hosts.c
+++ b/drivers/scsi/hosts.c
@@ -141,7 +141,7 @@ int scsi_host_set_state(struct Scsi_Host *shost, enum 
scsi_host_state state)
  illegal:
SCSI_LOG_ERROR_RECOVERY(1,
shost_printk(KERN_ERR, shost,
-"Illegal host state transition"
+"Invalid host state transition "
 "%s->%s\n",
 scsi_host_state_name(oldstate),
 scsi_host_state_name(state)));
diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c
index 4bcf916..2e0d9a1 100644
--- a/drivers/scsi/iscsi_tcp.c
+++ b/drivers/scsi/iscsi_tcp.c
@@ -389,7 +389,7 @@ iscsi_r2t_rsp(struct iscsi_conn *conn, struct 
iscsi_cmd_task *ctask)
}
 
if (r2t->data_length > session->max_burst)
-   debug_scsi("invalid R2T with data len %u and max burst %u."
+   debug_scsi("invalid R2T with data len %u and max burst %u. "
   "Attempting to execute request.\n",
r2t->data_length, session->max_burst);
 
@@ -900,13 +900,13 @@ more:
 
memcpy(_digest, conn->data, sizeof(uint32_t));
if (recv_digest != tcp_conn->in.datadgst) {
-   debug_tcp("iscsi_tcp: data digest error!"
+   debug_tcp("iscsi_tcp: data digest error! "
  "0x%x != 0x%x\n", recv_digest,
  tcp_conn->in.datadgst);
iscsi_conn_failure(conn, ISCSI_ERR_DATA_DGST);
return 0;
} else {
-   debug_tcp("iscsi_tcp: data 

Re: [PATCH 44/59] drivers/scsi: Add missing "space"

2007-11-20 Thread Alistair John Strachan
On Tuesday 20 November 2007 01:53:31 Joe Perches wrote:
> diff --git a/drivers/scsi/NCR_D700.c b/drivers/scsi/NCR_D700.c
> index 9e64b21..99403a6 100644
> --- a/drivers/scsi/NCR_D700.c
> +++ b/drivers/scsi/NCR_D700.c
> @@ -182,7 +182,7 @@ NCR_D700_probe_one(struct NCR_D700_private *p, int
> siop, int irq,
>
>   hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL);
>   if (!hostdata) {
> - printk(KERN_ERR "NCR D700: SIOP%d: Failed to allocate host"
> + printk(KERN_ERR "NCR D700: SIOP%d: Failed to allocate host "
>  "data, detatching\n", siop);
>   return -ENOMEM;
>   }

If you're going to sneak in unrelated spelling/grammar changes, you might as 
well do it unilaterally.

"detached" please.

-- 
Cheers,
Alistair.

137/1 Warrender Park Road, Edinburgh, UK.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 44/59] drivers/scsi: Add missing space

2007-11-20 Thread Alistair John Strachan
On Tuesday 20 November 2007 01:53:31 Joe Perches wrote:
 diff --git a/drivers/scsi/NCR_D700.c b/drivers/scsi/NCR_D700.c
 index 9e64b21..99403a6 100644
 --- a/drivers/scsi/NCR_D700.c
 +++ b/drivers/scsi/NCR_D700.c
 @@ -182,7 +182,7 @@ NCR_D700_probe_one(struct NCR_D700_private *p, int
 siop, int irq,

   hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL);
   if (!hostdata) {
 - printk(KERN_ERR NCR D700: SIOP%d: Failed to allocate host
 + printk(KERN_ERR NCR D700: SIOP%d: Failed to allocate host 
  data, detatching\n, siop);
   return -ENOMEM;
   }

If you're going to sneak in unrelated spelling/grammar changes, you might as 
well do it unilaterally.

detached please.

-- 
Cheers,
Alistair.

137/1 Warrender Park Road, Edinburgh, UK.
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 44/59] drivers/scsi: Add missing space

2007-11-20 Thread Joe Perches
On Tue, 2007-11-20 at 10:39 +, Alistair John Strachan wrote:
 On Tuesday 20 November 2007 01:53:31 Joe Perches wrote:
  diff --git a/drivers/scsi/NCR_D700.c b/drivers/scsi/NCR_D700.c
  index 9e64b21..99403a6 100644
  --- a/drivers/scsi/NCR_D700.c
  +++ b/drivers/scsi/NCR_D700.c
  @@ -182,7 +182,7 @@ NCR_D700_probe_one(struct NCR_D700_private *p, int
  siop, int irq,
 
  hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL);
  if (!hostdata) {
  -   printk(KERN_ERR NCR D700: SIOP%d: Failed to allocate host
  +   printk(KERN_ERR NCR D700: SIOP%d: Failed to allocate host 
 data, detatching\n, siop);
  return -ENOMEM;
  }
 
 If you're going to sneak in unrelated spelling/grammar changes, you might as 
 well do it unilaterally.

 drivers/scsi/NCR_D700.c|4 ++--
 drivers/scsi/aic7xxx_old.c |2 +-
 drivers/scsi/dc395x.c  |2 +-
 drivers/scsi/hosts.c   |2 +-
 drivers/scsi/iscsi_tcp.c   |6 +++---
 drivers/scsi/scsi_proc.c   |2 +-
 drivers/scsi/scsi_scan.c   |2 +-
 7 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/drivers/scsi/NCR_D700.c b/drivers/scsi/NCR_D700.c
index 9e64b21..36281c5 100644
--- a/drivers/scsi/NCR_D700.c
+++ b/drivers/scsi/NCR_D700.c
@@ -182,8 +182,8 @@ NCR_D700_probe_one(struct NCR_D700_private *p, int siop, 
int irq,
 
hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL);
if (!hostdata) {
-   printk(KERN_ERR NCR D700: SIOP%d: Failed to allocate host
-  data, detatching\n, siop);
+   printk(KERN_ERR NCR D700: SIOP%d: Failed to allocate host 
+  data, detaching\n, siop);
return -ENOMEM;
}
 
diff --git a/drivers/scsi/aic7xxx_old.c b/drivers/scsi/aic7xxx_old.c
index 8f8db5f..c79a452 100644
--- a/drivers/scsi/aic7xxx_old.c
+++ b/drivers/scsi/aic7xxx_old.c
@@ -3716,7 +3716,7 @@ aic7xxx_pci_intr(struct aic7xxx_host *p)
   pci_read_config_byte(p-pdev, PCI_STATUS + 1, status1);
 
   if ( (status1  DPE)  (aic7xxx_verbose  VERBOSE_MINOR_ERROR) )
-printk(WARN_LEAD Data Parity Error during PCI address or PCI write
+printk(WARN_LEAD Data Parity Error during PCI address or PCI write 
   phase.\n, p-host_no, -1, -1, -1);
   if ( (status1  SSE)  (aic7xxx_verbose  VERBOSE_MINOR_ERROR) )
 printk(WARN_LEAD Signal System Error Detected\n, p-host_no,
diff --git a/drivers/scsi/dc395x.c b/drivers/scsi/dc395x.c
index a9def6e..f98747c 100644
--- a/drivers/scsi/dc395x.c
+++ b/drivers/scsi/dc395x.c
@@ -1520,7 +1520,7 @@ static u8 start_scsi(struct AdapterCtlBlk* acb, struct 
DeviceCtlBlk* dcb,
}
 #endif
if (acb-active_dcb) {
-   dprintkl(KERN_DEBUG, start_scsi: (pid#%li) Attempt to start a
+   dprintkl(KERN_DEBUG, start_scsi: (pid#%li) Attempt to start a 
command while another command (pid#%li) is active.,
srb-cmd-serial_number,
acb-active_dcb-active_srb ?
diff --git a/drivers/scsi/hosts.c b/drivers/scsi/hosts.c
index 24271a8..b53f681 100644
--- a/drivers/scsi/hosts.c
+++ b/drivers/scsi/hosts.c
@@ -141,7 +141,7 @@ int scsi_host_set_state(struct Scsi_Host *shost, enum 
scsi_host_state state)
  illegal:
SCSI_LOG_ERROR_RECOVERY(1,
shost_printk(KERN_ERR, shost,
-Illegal host state transition
+Invalid host state transition 
 %s-%s\n,
 scsi_host_state_name(oldstate),
 scsi_host_state_name(state)));
diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c
index 4bcf916..2e0d9a1 100644
--- a/drivers/scsi/iscsi_tcp.c
+++ b/drivers/scsi/iscsi_tcp.c
@@ -389,7 +389,7 @@ iscsi_r2t_rsp(struct iscsi_conn *conn, struct 
iscsi_cmd_task *ctask)
}
 
if (r2t-data_length  session-max_burst)
-   debug_scsi(invalid R2T with data len %u and max burst %u.
+   debug_scsi(invalid R2T with data len %u and max burst %u. 
   Attempting to execute request.\n,
r2t-data_length, session-max_burst);
 
@@ -900,13 +900,13 @@ more:
 
memcpy(recv_digest, conn-data, sizeof(uint32_t));
if (recv_digest != tcp_conn-in.datadgst) {
-   debug_tcp(iscsi_tcp: data digest error!
+   debug_tcp(iscsi_tcp: data digest error! 
  0x%x != 0x%x\n, recv_digest,
  tcp_conn-in.datadgst);
iscsi_conn_failure(conn, ISCSI_ERR_DATA_DGST);
return 0;
} else {
-   debug_tcp(iscsi_tcp: data digest match!
+   debug_tcp(iscsi_tcp: data digest match! 
   

[PATCH 44/59] drivers/scsi: Add missing "space"

2007-11-19 Thread Joe Perches

Signed-off-by: Joe Perches <[EMAIL PROTECTED]>
---
 drivers/scsi/NCR_D700.c|2 +-
 drivers/scsi/aic7xxx_old.c |2 +-
 drivers/scsi/dc395x.c  |2 +-
 drivers/scsi/hosts.c   |2 +-
 drivers/scsi/iscsi_tcp.c   |6 +++---
 drivers/scsi/scsi_proc.c   |2 +-
 drivers/scsi/scsi_scan.c   |2 +-
 7 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/scsi/NCR_D700.c b/drivers/scsi/NCR_D700.c
index 9e64b21..99403a6 100644
--- a/drivers/scsi/NCR_D700.c
+++ b/drivers/scsi/NCR_D700.c
@@ -182,7 +182,7 @@ NCR_D700_probe_one(struct NCR_D700_private *p, int siop, 
int irq,
 
hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL);
if (!hostdata) {
-   printk(KERN_ERR "NCR D700: SIOP%d: Failed to allocate host"
+   printk(KERN_ERR "NCR D700: SIOP%d: Failed to allocate host "
   "data, detatching\n", siop);
return -ENOMEM;
}
diff --git a/drivers/scsi/aic7xxx_old.c b/drivers/scsi/aic7xxx_old.c
index 8f8db5f..c79a452 100644
--- a/drivers/scsi/aic7xxx_old.c
+++ b/drivers/scsi/aic7xxx_old.c
@@ -3716,7 +3716,7 @@ aic7xxx_pci_intr(struct aic7xxx_host *p)
   pci_read_config_byte(p->pdev, PCI_STATUS + 1, );
 
   if ( (status1 & DPE) && (aic7xxx_verbose & VERBOSE_MINOR_ERROR) )
-printk(WARN_LEAD "Data Parity Error during PCI address or PCI write"
+printk(WARN_LEAD "Data Parity Error during PCI address or PCI write "
   "phase.\n", p->host_no, -1, -1, -1);
   if ( (status1 & SSE) && (aic7xxx_verbose & VERBOSE_MINOR_ERROR) )
 printk(WARN_LEAD "Signal System Error Detected\n", p->host_no,
diff --git a/drivers/scsi/dc395x.c b/drivers/scsi/dc395x.c
index a9def6e..f98747c 100644
--- a/drivers/scsi/dc395x.c
+++ b/drivers/scsi/dc395x.c
@@ -1520,7 +1520,7 @@ static u8 start_scsi(struct AdapterCtlBlk* acb, struct 
DeviceCtlBlk* dcb,
}
 #endif
if (acb->active_dcb) {
-   dprintkl(KERN_DEBUG, "start_scsi: (pid#%li) Attempt to start a"
+   dprintkl(KERN_DEBUG, "start_scsi: (pid#%li) Attempt to start a "
"command while another command (pid#%li) is active.",
srb->cmd->serial_number,
acb->active_dcb->active_srb ?
diff --git a/drivers/scsi/hosts.c b/drivers/scsi/hosts.c
index 24271a8..b53f681 100644
--- a/drivers/scsi/hosts.c
+++ b/drivers/scsi/hosts.c
@@ -141,7 +141,7 @@ int scsi_host_set_state(struct Scsi_Host *shost, enum 
scsi_host_state state)
  illegal:
SCSI_LOG_ERROR_RECOVERY(1,
shost_printk(KERN_ERR, shost,
-"Illegal host state transition"
+"Invalid host state transition "
 "%s->%s\n",
 scsi_host_state_name(oldstate),
 scsi_host_state_name(state)));
diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c
index 4bcf916..2e0d9a1 100644
--- a/drivers/scsi/iscsi_tcp.c
+++ b/drivers/scsi/iscsi_tcp.c
@@ -389,7 +389,7 @@ iscsi_r2t_rsp(struct iscsi_conn *conn, struct 
iscsi_cmd_task *ctask)
}
 
if (r2t->data_length > session->max_burst)
-   debug_scsi("invalid R2T with data len %u and max burst %u."
+   debug_scsi("invalid R2T with data len %u and max burst %u. "
   "Attempting to execute request.\n",
r2t->data_length, session->max_burst);
 
@@ -900,13 +900,13 @@ more:
 
memcpy(_digest, conn->data, sizeof(uint32_t));
if (recv_digest != tcp_conn->in.datadgst) {
-   debug_tcp("iscsi_tcp: data digest error!"
+   debug_tcp("iscsi_tcp: data digest error! "
  "0x%x != 0x%x\n", recv_digest,
  tcp_conn->in.datadgst);
iscsi_conn_failure(conn, ISCSI_ERR_DATA_DGST);
return 0;
} else {
-   debug_tcp("iscsi_tcp: data digest match!"
+   debug_tcp("iscsi_tcp: data digest match! "
  "0x%x == 0x%x\n", recv_digest,
  tcp_conn->in.datadgst);
tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
diff --git a/drivers/scsi/scsi_proc.c b/drivers/scsi/scsi_proc.c
index bb6f051..781dc85 100644
--- a/drivers/scsi/scsi_proc.c
+++ b/drivers/scsi/scsi_proc.c
@@ -123,7 +123,7 @@ void scsi_proc_host_add(struct Scsi_Host *shost)
p = create_proc_read_entry(name, S_IFREG | S_IRUGO | S_IWUSR,
sht->proc_dir, proc_scsi_read, shost);
if (!p) {
-   printk(KERN_ERR "%s: Failed to register host %d in"
+   printk(KERN_ERR "%s: Failed to register host %d in "
   "%s\n", __FUNCTION__, 

[PATCH 44/59] drivers/scsi: Add missing space

2007-11-19 Thread Joe Perches

Signed-off-by: Joe Perches [EMAIL PROTECTED]
---
 drivers/scsi/NCR_D700.c|2 +-
 drivers/scsi/aic7xxx_old.c |2 +-
 drivers/scsi/dc395x.c  |2 +-
 drivers/scsi/hosts.c   |2 +-
 drivers/scsi/iscsi_tcp.c   |6 +++---
 drivers/scsi/scsi_proc.c   |2 +-
 drivers/scsi/scsi_scan.c   |2 +-
 7 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/scsi/NCR_D700.c b/drivers/scsi/NCR_D700.c
index 9e64b21..99403a6 100644
--- a/drivers/scsi/NCR_D700.c
+++ b/drivers/scsi/NCR_D700.c
@@ -182,7 +182,7 @@ NCR_D700_probe_one(struct NCR_D700_private *p, int siop, 
int irq,
 
hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL);
if (!hostdata) {
-   printk(KERN_ERR NCR D700: SIOP%d: Failed to allocate host
+   printk(KERN_ERR NCR D700: SIOP%d: Failed to allocate host 
   data, detatching\n, siop);
return -ENOMEM;
}
diff --git a/drivers/scsi/aic7xxx_old.c b/drivers/scsi/aic7xxx_old.c
index 8f8db5f..c79a452 100644
--- a/drivers/scsi/aic7xxx_old.c
+++ b/drivers/scsi/aic7xxx_old.c
@@ -3716,7 +3716,7 @@ aic7xxx_pci_intr(struct aic7xxx_host *p)
   pci_read_config_byte(p-pdev, PCI_STATUS + 1, status1);
 
   if ( (status1  DPE)  (aic7xxx_verbose  VERBOSE_MINOR_ERROR) )
-printk(WARN_LEAD Data Parity Error during PCI address or PCI write
+printk(WARN_LEAD Data Parity Error during PCI address or PCI write 
   phase.\n, p-host_no, -1, -1, -1);
   if ( (status1  SSE)  (aic7xxx_verbose  VERBOSE_MINOR_ERROR) )
 printk(WARN_LEAD Signal System Error Detected\n, p-host_no,
diff --git a/drivers/scsi/dc395x.c b/drivers/scsi/dc395x.c
index a9def6e..f98747c 100644
--- a/drivers/scsi/dc395x.c
+++ b/drivers/scsi/dc395x.c
@@ -1520,7 +1520,7 @@ static u8 start_scsi(struct AdapterCtlBlk* acb, struct 
DeviceCtlBlk* dcb,
}
 #endif
if (acb-active_dcb) {
-   dprintkl(KERN_DEBUG, start_scsi: (pid#%li) Attempt to start a
+   dprintkl(KERN_DEBUG, start_scsi: (pid#%li) Attempt to start a 
command while another command (pid#%li) is active.,
srb-cmd-serial_number,
acb-active_dcb-active_srb ?
diff --git a/drivers/scsi/hosts.c b/drivers/scsi/hosts.c
index 24271a8..b53f681 100644
--- a/drivers/scsi/hosts.c
+++ b/drivers/scsi/hosts.c
@@ -141,7 +141,7 @@ int scsi_host_set_state(struct Scsi_Host *shost, enum 
scsi_host_state state)
  illegal:
SCSI_LOG_ERROR_RECOVERY(1,
shost_printk(KERN_ERR, shost,
-Illegal host state transition
+Invalid host state transition 
 %s-%s\n,
 scsi_host_state_name(oldstate),
 scsi_host_state_name(state)));
diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c
index 4bcf916..2e0d9a1 100644
--- a/drivers/scsi/iscsi_tcp.c
+++ b/drivers/scsi/iscsi_tcp.c
@@ -389,7 +389,7 @@ iscsi_r2t_rsp(struct iscsi_conn *conn, struct 
iscsi_cmd_task *ctask)
}
 
if (r2t-data_length  session-max_burst)
-   debug_scsi(invalid R2T with data len %u and max burst %u.
+   debug_scsi(invalid R2T with data len %u and max burst %u. 
   Attempting to execute request.\n,
r2t-data_length, session-max_burst);
 
@@ -900,13 +900,13 @@ more:
 
memcpy(recv_digest, conn-data, sizeof(uint32_t));
if (recv_digest != tcp_conn-in.datadgst) {
-   debug_tcp(iscsi_tcp: data digest error!
+   debug_tcp(iscsi_tcp: data digest error! 
  0x%x != 0x%x\n, recv_digest,
  tcp_conn-in.datadgst);
iscsi_conn_failure(conn, ISCSI_ERR_DATA_DGST);
return 0;
} else {
-   debug_tcp(iscsi_tcp: data digest match!
+   debug_tcp(iscsi_tcp: data digest match! 
  0x%x == 0x%x\n, recv_digest,
  tcp_conn-in.datadgst);
tcp_conn-in_progress = IN_PROGRESS_WAIT_HEADER;
diff --git a/drivers/scsi/scsi_proc.c b/drivers/scsi/scsi_proc.c
index bb6f051..781dc85 100644
--- a/drivers/scsi/scsi_proc.c
+++ b/drivers/scsi/scsi_proc.c
@@ -123,7 +123,7 @@ void scsi_proc_host_add(struct Scsi_Host *shost)
p = create_proc_read_entry(name, S_IFREG | S_IRUGO | S_IWUSR,
sht-proc_dir, proc_scsi_read, shost);
if (!p) {
-   printk(KERN_ERR %s: Failed to register host %d in
+   printk(KERN_ERR %s: Failed to register host %d in 
   %s\n, __FUNCTION__, shost-host_no,
   sht-proc_name);