diff options
author | Masanari Iida <standby24x7@gmail.com> | 2015-05-07 10:21:27 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.com> | 2015-08-07 08:28:45 -0400 |
commit | 804ff603d2fe98c48aac4e2d6e4f5db687d78812 (patch) | |
tree | ddbeb0615dd19c82c02fb31f9567ce3f44886a54 | |
parent | 839b47bca58ac67657c7afea363ede72c1a2480c (diff) |
[SCSI] Fix printk typos in drivers/scsi
This patch fix spme spelling typos in printk within drivers/scsi.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
-rw-r--r-- | drivers/scsi/53c700.c | 2 | ||||
-rw-r--r-- | drivers/scsi/scsi_transport_iscsi.c | 2 | ||||
-rw-r--r-- | drivers/scsi/scsi_transport_spi.c | 4 | ||||
-rw-r--r-- | drivers/scsi/wd719x.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/drivers/scsi/53c700.c b/drivers/scsi/53c700.c index 82abfce1cb42..a209c3418898 100644 --- a/drivers/scsi/53c700.c +++ b/drivers/scsi/53c700.c | |||
@@ -299,7 +299,7 @@ NCR_700_detect(struct scsi_host_template *tpnt, | |||
299 | memory = dma_alloc_noncoherent(hostdata->dev, TOTAL_MEM_SIZE, | 299 | memory = dma_alloc_noncoherent(hostdata->dev, TOTAL_MEM_SIZE, |
300 | &pScript, GFP_KERNEL); | 300 | &pScript, GFP_KERNEL); |
301 | if(memory == NULL) { | 301 | if(memory == NULL) { |
302 | printk(KERN_ERR "53c700: Failed to allocate memory for driver, detatching\n"); | 302 | printk(KERN_ERR "53c700: Failed to allocate memory for driver, detaching\n"); |
303 | return NULL; | 303 | return NULL; |
304 | } | 304 | } |
305 | 305 | ||
diff --git a/drivers/scsi/scsi_transport_iscsi.c b/drivers/scsi/scsi_transport_iscsi.c index 55647aae065c..da73d5524602 100644 --- a/drivers/scsi/scsi_transport_iscsi.c +++ b/drivers/scsi/scsi_transport_iscsi.c | |||
@@ -3037,7 +3037,7 @@ iscsi_get_chap(struct iscsi_transport *transport, struct nlmsghdr *nlh) | |||
3037 | 3037 | ||
3038 | shost = scsi_host_lookup(ev->u.get_chap.host_no); | 3038 | shost = scsi_host_lookup(ev->u.get_chap.host_no); |
3039 | if (!shost) { | 3039 | if (!shost) { |
3040 | printk(KERN_ERR "%s: failed. Cound not find host no %u\n", | 3040 | printk(KERN_ERR "%s: failed. Could not find host no %u\n", |
3041 | __func__, ev->u.get_chap.host_no); | 3041 | __func__, ev->u.get_chap.host_no); |
3042 | return -ENODEV; | 3042 | return -ENODEV; |
3043 | } | 3043 | } |
diff --git a/drivers/scsi/scsi_transport_spi.c b/drivers/scsi/scsi_transport_spi.c index 31bbb0da3397..319868f3f674 100644 --- a/drivers/scsi/scsi_transport_spi.c +++ b/drivers/scsi/scsi_transport_spi.c | |||
@@ -786,10 +786,10 @@ spi_dv_retrain(struct scsi_device *sdev, u8 *buffer, u8 *ptr, | |||
786 | * IU, then QAS (if we can control them), then finally | 786 | * IU, then QAS (if we can control them), then finally |
787 | * fall down the periods */ | 787 | * fall down the periods */ |
788 | if (i->f->set_iu && spi_iu(starget)) { | 788 | if (i->f->set_iu && spi_iu(starget)) { |
789 | starget_printk(KERN_ERR, starget, "Domain Validation Disabing Information Units\n"); | 789 | starget_printk(KERN_ERR, starget, "Domain Validation Disabling Information Units\n"); |
790 | DV_SET(iu, 0); | 790 | DV_SET(iu, 0); |
791 | } else if (i->f->set_qas && spi_qas(starget)) { | 791 | } else if (i->f->set_qas && spi_qas(starget)) { |
792 | starget_printk(KERN_ERR, starget, "Domain Validation Disabing Quick Arbitration and Selection\n"); | 792 | starget_printk(KERN_ERR, starget, "Domain Validation Disabling Quick Arbitration and Selection\n"); |
793 | DV_SET(qas, 0); | 793 | DV_SET(qas, 0); |
794 | } else { | 794 | } else { |
795 | newperiod = spi_period(starget); | 795 | newperiod = spi_period(starget); |
diff --git a/drivers/scsi/wd719x.c b/drivers/scsi/wd719x.c index 61346aa73178..e3da1a2fdb66 100644 --- a/drivers/scsi/wd719x.c +++ b/drivers/scsi/wd719x.c | |||
@@ -590,7 +590,7 @@ static inline void wd719x_interrupt_SCB(struct wd719x *wd, | |||
590 | dev_dbg(&wd->pdev->dev, "selection timeout\n"); | 590 | dev_dbg(&wd->pdev->dev, "selection timeout\n"); |
591 | break; | 591 | break; |
592 | case WD719X_SUE_RESET: | 592 | case WD719X_SUE_RESET: |
593 | dev_dbg(&wd->pdev->dev, "bus reset occured\n"); | 593 | dev_dbg(&wd->pdev->dev, "bus reset occurred\n"); |
594 | result = DID_RESET; | 594 | result = DID_RESET; |
595 | break; | 595 | break; |
596 | case WD719X_SUE_BUSERROR: | 596 | case WD719X_SUE_BUSERROR: |