Fix spelling of "transferred".
authorVagrant Cascadian <vagrant@debian.org>
Tue, 15 Mar 2016 19:16:39 +0000 (12:16 -0700)
committerTom Rini <trini@konsulko.com>
Tue, 22 Mar 2016 16:16:16 +0000 (12:16 -0400)
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Acked-by: Marek Vasut <marex@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
13 files changed:
arch/powerpc/cpu/mpc8xx/spi.c
arch/sparc/cpu/leon3/usb_uhci.c
board/mpl/common/usb_uhci.c
cmd/fdc.c
common/usb.c
common/usb_storage.c
doc/README.POST
doc/device-tree-bindings/spi/spi-bus.txt
doc/kwboot.1
drivers/block/sym53c8xx.c
drivers/fpga/stratixII.c
include/usb.h
post/lib_powerpc/b.c

index c442af979d4a8c9fb7ed6507f9db4363849abc98..6267c0e204d82ea01b34b7faceeabbba1e531a13 100644 (file)
@@ -455,7 +455,7 @@ ssize_t spi_xfer (size_t count)
  *
  * The Serial Peripheral Interface (SPI) is tested in the local loopback mode.
  * The interface is configured accordingly and several packets
- * are transfered. The configurable test parameters are:
+ * are transferred. The configurable test parameters are:
  *   TEST_MIN_LENGTH - minimum size of packet to transfer
  *   TEST_MAX_LENGTH - maximum size of packet to transfer
  *   TEST_NUM - number of tests
index 242b83fbcfa617ad30e387e95399789fa2c6aaab..67bd1241bd27844cf87dcc4402efafbea664c363 100644 (file)
@@ -55,7 +55,7 @@
  * For Interrupt transfers USB_MAX_TEMP_INT_TD Transfer descriptor are available. They
  * will be inserted after the appropriate (depending the interval setting) skeleton TD.
  * If an interrupt has been detected the dev->irqhandler is called. The status and number
- * of transfered bytes is stored in dev->irq_status resp. dev->irq_act_len. If the
+ * of transferred bytes is stored in dev->irq_status resp. dev->irq_act_len. If the
  * dev->irqhandler returns 0, the interrupt TD is removed and disabled. If an 1 is returned,
  * the interrupt TD will be reactivated.
  *
@@ -229,7 +229,7 @@ unsigned long usb_uhci_td_stat(unsigned long status)
        return result;
 }
 
-/* get the status and the transfered len of a td chain.
+/* get the status and the transferred len of a td chain.
  * called from the completion handler
  */
 int usb_get_td_status(uhci_td_t * td, struct usb_device *dev)
@@ -247,7 +247,7 @@ int usb_get_td_status(uhci_td_t * td, struct usb_device *dev)
                stat = usb_uhci_td_stat(temp);
                info = swap_32((unsigned long)READ32(&mytd->info));
                if (((info & 0xff) != USB_PID_SETUP) && (((info >> 21) & 0x7ff) != 0x7ff) && (temp & 0x7FF) != 0x7ff) { /* if not setup and not null data pack */
-                       dev->act_len += (temp & 0x7FF) + 1;     /* the transfered len is act_len + 1 */
+                       dev->act_len += (temp & 0x7FF) + 1;     /* the transferred len is act_len + 1 */
                }
                if (stat) {     /* status no ok */
                        dev->status = stat;
@@ -621,7 +621,7 @@ void usb_check_int_chain(void)
                        if ((td->dev_ptr != 0L) && !(status & TD_CTRL_ACTIVE)) {
                                /* td is not active and a device is assigned -> call irqhandler */
                                dev = (struct usb_device *)td->dev_ptr;
-                               dev->irq_act_len = ((status & 0x7FF) == 0x7FF) ? 0 : (status & 0x7FF) + 1;      /* transfered length */
+                               dev->irq_act_len = ((status & 0x7FF) == 0x7FF) ? 0 : (status & 0x7FF) + 1;      /* transferred length */
                                dev->irq_status = usb_uhci_td_stat(status);     /* get status */
                                res = dev->irq_handle(dev);     /* call irqhandler */
                                if (res == 1) {
index 5590be1962bf37ada5b42dbc7f5bb226ff79eb8d..839940763183f4d221ed59757b48b5915dc665b4 100644 (file)
@@ -52,7 +52,7 @@
  * For Interrupt transfers USB_MAX_TEMP_INT_TD Transfer descriptor are available. They
  * will be inserted after the appropriate (depending the interval setting) skeleton TD.
  * If an interrupt has been detected the dev->irqhandler is called. The status and number
- * of transfered bytes is stored in dev->irq_status resp. dev->irq_act_len. If the
+ * of transferred bytes is stored in dev->irq_status resp. dev->irq_act_len. If the
  * dev->irqhandler returns 0, the interrupt TD is removed and disabled. If an 1 is returned,
  * the interrupt TD will be reactivated.
  *
@@ -156,7 +156,7 @@ unsigned long usb_uhci_td_stat(unsigned long status)
        return result;
 }
 
-/* get the status and the transfered len of a td chain.
+/* get the status and the transferred len of a td chain.
  * called from the completion handler
  */
 int usb_get_td_status(uhci_td_t *td,struct usb_device *dev)
@@ -177,7 +177,7 @@ int usb_get_td_status(uhci_td_t *td,struct usb_device *dev)
                                (((info >> 21) & 0x7ff)!= 0x7ff) &&
                                (temp & 0x7FF)!=0x7ff)
                {  /* if not setup and not null data pack */
-                       dev->act_len+=(temp & 0x7FF) + 1; /* the transfered len is act_len + 1 */
+                       dev->act_len+=(temp & 0x7FF) + 1; /* the transferred len is act_len + 1 */
                }
                if(stat) {           /* status no ok */
                        dev->status=stat;
@@ -533,7 +533,7 @@ void usb_check_int_chain(void)
                        if((td->dev_ptr!=0L) && !(status & TD_CTRL_ACTIVE)) {
                                /* td is not active and a device is assigned -> call irqhandler */
                                dev=(struct usb_device *)td->dev_ptr;
-                               dev->irq_act_len=((status & 0x7FF)==0x7FF) ? 0 : (status & 0x7FF) + 1; /* transfered length */
+                               dev->irq_act_len=((status & 0x7FF)==0x7FF) ? 0 : (status & 0x7FF) + 1; /* transferred length */
                                dev->irq_status=usb_uhci_td_stat(status); /* get status */
                                res=dev->irq_handle(dev); /* call irqhandler */
                                if(res==1) {
index 5766b5650b6a64d9dc2f81ceaa99bc48fba1cb71..058ae89a38765834718dc058aebee906a29adc16 100644 (file)
--- a/cmd/fdc.c
+++ b/cmd/fdc.c
@@ -459,7 +459,7 @@ retryrw:
                                        break;
                                }
                                if((c&0xC0)==0x80) { /* output */
-                                       PRINTF("Transfer error transfered: at %ld, MSR=%02X\n",i,c);
+                                       PRINTF("Transfer error transferred: at %ld, MSR=%02X\n",i,c);
                                        if(i>6) {
                                                for(ii=0;ii<7;ii++) {
                                                        pCMD->result[ii]=bufferw[(i-7+ii)];
index 45a5a0f9c73039def05eaf31362e8229ce6aeb77..4d0de4d87e83a1bfd5f15ea171472de4260a59d2 100644 (file)
@@ -210,7 +210,7 @@ int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
  * clear keyboards LEDs). For data transfers, (storage transfers) we don't
  * allow control messages with 0 timeout, by previousely resetting the flag
  * asynch_allowed (usb_disable_asynch(1)).
- * returns the transfered length if OK or -1 if error. The transfered length
+ * returns the transferred length if OK or -1 if error. The transferred length
  * and the current status are stored in the dev->act_len and dev->status.
  */
 int usb_control_msg(struct usb_device *dev, unsigned int pipe,
index 14728242f01cdf0c7e373a86cd3b90e628b431cd..83c8607cf4fcaef8016d770425bb5dc3984bfdfb 100644 (file)
@@ -697,7 +697,7 @@ static int usb_stor_CBI_get_status(ccb *srb, struct us_data *us)
                us->ip_wanted = 0;
                return USB_STOR_TRANSPORT_ERROR;
        }
-       debug("Got interrupt data 0x%x, transfered %d status 0x%lX\n",
+       debug("Got interrupt data 0x%x, transferred %d status 0x%lX\n",
              us->ip_data, us->pusb_dev->irq_act_len,
              us->pusb_dev->irq_status);
        /* UFI gives us ASC and ASCQ, like a request sense */
index 6815d491cf4fbcaf790c332722257a279564e54e..a9335f4d8b9c7d0e3a30404dabb37b0fc27cb912 100644 (file)
@@ -494,7 +494,7 @@ This test will verify the following ALU instructions:
      This group will contain: b, bl, bc.
 
      The first 2 instructions (b, bl) will be verified by jumping to
-     a fixed address and checking whether control was transfered to
+     a fixed address and checking whether control was transferred to
      that very point. For the bl instruction the value of the link
      register will be checked as well (using mfspr). To verify the bc
      instruction various combinations of the BI/BO fields, the CTR
index 5c8720a820aa9566738b2ec0ac09da4a19f7057f..420ec9529fb4414c646d640ec264e3c710a097e2 100644 (file)
@@ -63,7 +63,7 @@ contain the following properties.
                      a header byte before reading data from the slave.
 
 Some SPI controllers and devices support Dual and Quad SPI transfer mode.
-It allows data in SPI system transfered in 2 wires(DUAL) or 4 wires(QUAD).
+It allows data in SPI system transferred in 2 wires(DUAL) or 4 wires(QUAD).
 Now the value that spi-tx-bus-width and spi-rx-bus-width can receive is
 only 1(SINGLE), 2(DUAL) and 4(QUAD).
 Dual/Quad mode is not allowed when 3-wire mode is used.
index 25fe69aa5c4cbc31593bdd2d0b8cd8ca4398090d..1e9ca268f7ce7db4f8b113a0f6a825cc18d3f9cc 100644 (file)
@@ -20,7 +20,7 @@ must conform to Marvell's BootROM firmware image format
 Following power-up or a system reset, system BootROM code polls the
 UART for a brief period of time, sensing a handshake message which
 initiates an image upload. This program sends this boot message until
-it receives a positive acknowledgement. The image is transfered using
+it receives a positive acknowledgement. The image is transferred using
 Xmodem.
 
 Additionally, this program implements a minimal terminal mode, which
index 6f1ac857230ef93cf78e6b17e472d58eb6493eef..c7c40affaed11a7cde06994238f40e3721344f3f 100644 (file)
@@ -657,7 +657,7 @@ void scsi_issue(ccb *pccb)
        /* struct pccb must be set-up correctly */
        retrycnt=0;
        PRINTF("ID %d issue cmd %02X\n",pccb->target,pccb->cmd[0]);
-       pccb->trans_bytes=0; /* no bytes transfered yet */
+       pccb->trans_bytes=0; /* no bytes transferred yet */
        scsi_set_script(pccb); /* fill in SCRIPT                */
        scsi_int_mask=STO | UDC | MA; /* | CMP; / * Interrupts which are enabled */
        script_int_mask=0xff; /* enable all Ints */
@@ -712,7 +712,7 @@ retry:
                                for(i=0;i<3;i++)
                                        int_stat[i]=0; /* delete all int status */
                                retrycnt++;
-                               PRINTF("ID: %X Phase Missmatch Retry %d Phase %02X transfered %lx\n",
+                               PRINTF("ID: %X Phase Missmatch Retry %d Phase %02X transferred %lx\n",
                                                pccb->target,retrycnt,scsi_read_byte(SBCL),pccb->trans_bytes);
                                scsi_write_dsp(phys_to_bus(&script_cmd[4])); /* start retry script */
                                goto retry;
index 820d016a11d920d7a05fa6a403536e4787392d97..da9c14a568dd7da234b1e930411b4c4db3c20022 100644 (file)
@@ -130,7 +130,7 @@ int StratixII_ps_fpp_load (Altera_desc * desc, void *buf, size_t bsize,
                /* 3.1 check stratix has not signaled us an error */
                if (fns->status (cookie) != 1) {
                        printf
-                           ("\n%s(%d) Stratix failed (byte transfered till failure 0x%x)\n",
+                           ("\n%s(%d) Stratix failed (byte transferred till failure 0x%x)\n",
                             __FUNCTION__, __LINE__, bytecount);
                        fns->abort (cookie);
                        return FPGA_FAIL;
index 19411258ec8dd17f395afa443cec2b54ad184eb4..5adad368380897eadae2ac6d39b7934aefa1bd82 100644 (file)
@@ -130,7 +130,7 @@ struct usb_device {
        int string_langid;              /* language ID for strings */
        int (*irq_handle)(struct usb_device *dev);
        unsigned long irq_status;
-       int irq_act_len;                /* transfered bytes */
+       int irq_act_len;                /* transferred bytes */
        void *privptr;
        /*
         * Child devices -  if this is a hub device
@@ -138,7 +138,7 @@ struct usb_device {
         */
        unsigned long status;
        unsigned long int_pending;      /* 1 bit per ep, used by int_queue */
-       int act_len;                    /* transfered bytes */
+       int act_len;                    /* transferred bytes */
        int maxchild;                   /* Number of ports if hub */
        int portnr;                     /* Port number, 1=first */
 #ifndef CONFIG_DM_USB
index 43b4c353078cc1541885abdf136ccd3addef9f16..6875204b1c0ddae04569c8d3330a4c2a518457de 100644 (file)
@@ -12,7 +12,7 @@
  * Branch instructions:                b, bl, bc
  *
  * The first 2 instructions (b, bl) are verified by jumping
- * to a fixed address and checking whether control was transfered
+ * to a fixed address and checking whether control was transferred
  * to that very point. For the bl instruction the value of the
  * link register is checked as well (using mfspr).
  * To verify the bc instruction various combinations of the BI/BO