]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
Fix typo: firstly -> first.
authorVagrant Cascadian <vagrant@debian.org>
Tue, 24 Nov 2015 22:46:24 +0000 (14:46 -0800)
committerTom Rini <trini@konsulko.com>
Sat, 5 Dec 2015 23:22:23 +0000 (18:22 -0500)
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Acked-by: Marek Vasut <marex@denx.de>
drivers/block/ahci.c
drivers/mtd/nand/pxa3xx_nand.c
drivers/serial/serial.c

index 734fdcc3dbd38fddc27a4068adab6fab6c0e0397..5efa821dad360ae44a53025a96ea788c872ad126 100644 (file)
@@ -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;
        }
 
index 1565a9a060c44357a567e4b494efbeaa794da9f7..f65b499beb308c9cb6a29c550b280e051699a40e 100644 (file)
@@ -451,7 +451,7 @@ static void pxa3xx_set_datasize(struct pxa3xx_nand_info *info,
 }
 
 /**
- * NOTE: it is a must to set ND_RUN firstly, then write
+ * NOTE: it is a must to set ND_RUN first, then write
  * command buffer, otherwise, it does not work.
  * We enable all the interrupt at the same time, and
  * let pxa3xx_nand_irq to handle all logic.
index 422d3aedc3105a992f9d39b9233b8aa187435ac7..f1bd15b002d69d95e259027631a2b3509e9891eb 100644 (file)
@@ -527,7 +527,7 @@ static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
  *
  * Do a loopback test of the currently selected serial port. This
  * function is only useful in the context of the POST testing framwork.
- * The serial port is firstly configured into loopback mode and then
+ * The serial port is first configured into loopback mode and then
  * characters are sent through it.
  *
  * Returns 0 on success, value otherwise.