diff options
author | Vagrant Cascadian | 2015-11-24 14:45:02 -0800 |
---|---|---|
committer | Tom Rini | 2015-12-05 18:22:21 -0500 |
commit | 3f42dc87b4fbcc99baa26c7be8d0b74aaa4c2f30 (patch) | |
tree | a5049d2116f24780fb0f6096100e26a7e567cfac /drivers | |
parent | e5d3078622551a48a6b4e5ea9a61e507811bfa97 (diff) |
Fix typo: commmand -> command.
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/block/ahci.c | 4 | ||||
-rw-r--r-- | drivers/block/fsl_sata.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/block/ahci.c b/drivers/block/ahci.c index 1ad638ea05a..734fdcc3dbd 100644 --- a/drivers/block/ahci.c +++ b/drivers/block/ahci.c @@ -818,7 +818,7 @@ static int ata_scsiop_read_capacity10(ccb *pccb) if (!ataid[pccb->target]) { printf("scsi_ahci: SCSI READ CAPACITY10 command failure. " "\tNo ATA info!\n" - "\tPlease run SCSI commmand INQUIRY firstly!\n"); + "\tPlease run SCSI command INQUIRY firstly!\n"); return -EPERM; } @@ -847,7 +847,7 @@ static int ata_scsiop_read_capacity16(ccb *pccb) if (!ataid[pccb->target]) { printf("scsi_ahci: SCSI READ CAPACITY16 command failure. " "\tNo ATA info!\n" - "\tPlease run SCSI commmand INQUIRY firstly!\n"); + "\tPlease run SCSI command INQUIRY firstly!\n"); return -EPERM; } diff --git a/drivers/block/fsl_sata.c b/drivers/block/fsl_sata.c index 208a0ae8890..e000ebff76f 100644 --- a/drivers/block/fsl_sata.c +++ b/drivers/block/fsl_sata.c @@ -398,7 +398,7 @@ static int fsl_ata_exec_ata_cmd(struct fsl_sata *sata, struct sata_fis_h2d *cfis debug("attribute = %08x\n\r", val32); cmd_hdr->attribute = cpu_to_le32(val32); - /* Make sure cmd desc and cmd slot valid before commmand issue */ + /* Make sure cmd desc and cmd slot valid before command issue */ sync(); /* PMP*/ |