diff options
author | Vagrant Cascadian <vagrant@debian.org> | 2015-11-24 14:46:24 -0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-12-05 18:22:23 -0500 |
commit | 1b25e586cbdc2f3127be785e8b63248eca82b45b (patch) | |
tree | 0f066cf3b3c69dc6b576d4ff1ffc853c140e600a /drivers/block | |
parent | 3f42dc87b4fbcc99baa26c7be8d0b74aaa4c2f30 (diff) |
Fix typo: firstly -> first.
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/ahci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/ahci.c b/drivers/block/ahci.c index 734fdcc3db..5efa821dad 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 command INQUIRY firstly!\n"); + "\tPlease run SCSI command INQUIRY first!\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 command INQUIRY firstly!\n"); + "\tPlease run SCSI command INQUIRY first!\n"); return -EPERM; } |