]> git.sur5r.net Git - u-boot/commitdiff
Various, accumulated typos collected from around the tree.
authorRobert P. J. Day <rpjday@crashcourse.ca>
Wed, 7 Sep 2016 18:27:59 +0000 (14:27 -0400)
committerTom Rini <trini@konsulko.com>
Fri, 7 Oct 2016 00:57:40 +0000 (20:57 -0400)
Fix various misspellings of:

 * deprecated
 * partition
 * preceding,preceded
 * preparation
 * its versus it's
 * export
 * existing
 * scenario
 * redundant
 * remaining
 * value
 * architecture

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Reviewed-by: Jagan Teki <jteki@openedev.com>
Reviewed-by: Stefan Roese <sr@denx.de>
18 files changed:
arch/arm/include/asm/memory.h
arch/arm/include/asm/setup.h
arch/powerpc/cpu/mpc85xx/cpu.c
board/technexion/twister/twister.c
board/timll/devkit8000/devkit8000.c
cmd/nvedit.c
common/board_f.c
common/env_common.c
drivers/bios_emulator/x86emu/ops.c
drivers/crypto/fsl/jobdesc.c
drivers/ddr/marvell/a38x/ddr3_training.c
drivers/net/4xx_enet.c
drivers/spi/fsl_dspi.c
include/environment.h
include/s_record.h
lib/hashtable.c
scripts/checkpatch.pl
tools/fdtgrep.c

index 1864ab9fb55ec18d2a3be8da88722f93d19ede58..6b460786e008638dfde3a77f095e0a18fe57b977 100644 (file)
@@ -45,7 +45,7 @@ static inline void *phys_to_virt(unsigned long x)
 /*
  * Virtual <-> DMA view memory address translations
  * Again, these are *only* valid on the kernel direct mapped RAM
- * memory.  Use of these is *depreciated*.
+ * memory.  Use of these is *deprecated*.
  */
 #define virt_to_bus(x)         (__virt_to_bus((unsigned long)(x)))
 #define bus_to_virt(x)         ((void *)(__bus_to_virt((unsigned long)(x))))
@@ -127,7 +127,7 @@ static inline void *phys_to_virt(unsigned long x)
 #endif
 
 /*
- * We should really eliminate virt_to_bus() here - it's depreciated.
+ * We should really eliminate virt_to_bus() here - it's deprecated.
  */
 #define page_to_bus(page)      (virt_to_bus(page_address(page)))
 
index 78a7facfc3a69527ec3a8d027d12b4a8e6dff9fb..3a4e902af146e3f00f3e4d84770d07e178d4c695 100644 (file)
@@ -132,7 +132,7 @@ struct tag_ramdisk {
 /* describes where the compressed ramdisk image lives (virtual address) */
 /*
  * this one accidentally used virtual addresses - as such,
- * its depreciated.
+ * it's deprecated.
  */
 #define ATAG_INITRD    0x54410005
 
index ef08489aa6892fa6e246fe2954ecd8be060742a2..cabf64cf8c5f45d687faa983c2c04f7a54c9096b 100644 (file)
@@ -489,7 +489,7 @@ static void dump_spd_ddr_reg(void)
        for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
                fsl_ddr_get_spd(spd[i], i, CONFIG_DIMM_SLOTS_PER_CTLR);
 
-       puts("SPD data of all dimms (zero vaule is omitted)...\n");
+       puts("SPD data of all dimms (zero value is omitted)...\n");
        puts("Byte (hex)  ");
        k = 1;
        for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
@@ -543,7 +543,7 @@ static void dump_spd_ddr_reg(void)
                }
        }
        printf("DDR registers dump for all controllers "
-               "(zero vaule is omitted)...\n");
+               "(zero value is omitted)...\n");
        puts("Offset (hex)   ");
        for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
                printf("     Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
index 48d207fbd4136db28e90911b66624b7f2e6534f6..4a3d0946a0c353cf60b743bf519b7df7e53e0e1a 100644 (file)
@@ -140,7 +140,7 @@ int board_mmc_init(bd_t *bis)
 
 #ifdef CONFIG_SPL_OS_BOOT
 /*
- * Do board specific preperation before SPL
+ * Do board specific preparation before SPL
  * Linux boot
  */
 void spl_board_prepare_for_linux(void)
index 965252f18df4f9051e4b65b815739e741be1b58a..f785dbe6d73234cb05c44c6b937afbb41ca01abd 100644 (file)
@@ -157,7 +157,7 @@ int board_eth_init(bd_t *bis)
 
 #ifdef CONFIG_SPL_OS_BOOT
 /*
- * Do board specific preperation before SPL
+ * Do board specific preparation before SPL
  * Linux boot
  */
 void spl_board_prepare_for_linux(void)
index b67563bd6836dd94664cdb9b52e9f5ffd024f7f1..9ca5cb58a702a1c476b2ef5b6165c81c8df6bef0 100644 (file)
@@ -15,7 +15,7 @@
  *
  * The "environment" is stored on external storage as a list of '\0'
  * terminated "name=value" strings. The end of the list is marked by
- * a double '\0'. The environment is preceeded by a 32 bit CRC over
+ * a double '\0'. The environment is preceded by a 32 bit CRC over
  * the data part and, in case of redundant environment, a byte of
  * flags.
  *
@@ -838,7 +838,7 @@ static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
  * With "-c" and size is NOT given, then the export command will
  * format the data as currently used for the persistent storage,
  * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
- * prepend a valid CRC32 checksum and, in case of resundant
+ * prepend a valid CRC32 checksum and, in case of redundant
  * environment, a "current" redundancy flag. If size is given, this
  * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
  * checksum and redundancy flag will be inserted.
@@ -847,12 +847,12 @@ static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
  * terminating '\0' byte) will be written; here the optional size
  * argument will be used to make sure not to overflow the user
  * provided buffer; the command will abort if the size is not
- * sufficient. Any remainign space will be '\0' padded.
+ * sufficient. Any remaining space will be '\0' padded.
  *
  * On successful return, the variable "filesize" will be set.
  * Note that filesize includes the trailing/terminating '\0' byte(s).
  *
- * Usage szenario:  create a text snapshot/backup of the current settings:
+ * Usage scenario:  create a text snapshot/backup of the current settings:
  *
  *     => env export -t 100000
  *     => era ${backup_addr} +${filesize}
@@ -970,7 +970,7 @@ sep_err:
 /*
  * env import [-d] [-t [-r] | -b | -c] addr [size]
  *     -d:     delete existing environment before importing;
- *             otherwise overwrite / append to existion definitions
+ *             otherwise overwrite / append to existing definitions
  *     -t:     assume text format; either "size" must be given or the
  *             text data must be '\0' terminated
  *     -r:     handle CRLF like LF, that means exported variables with
index 2c8859507822d7015b02deac8e8ac23b665ca347..1b888228ca85d0b1d3c4ab5c7c85a07dcaed03e8 100644 (file)
@@ -1058,7 +1058,7 @@ void board_init_f(ulong boot_flags)
 {
 #ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
        /*
-        * For some archtectures, global data is initialized and used before
+        * For some architectures, global data is initialized and used before
         * calling this function. The data should be preserved. For others,
         * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
         * here to host global data until relocation.
@@ -1070,7 +1070,7 @@ void board_init_f(ulong boot_flags)
        /*
         * Clear global data before it is accessed at debug print
         * in initcall_run_list. Otherwise the debug print probably
-        * get the wrong vaule of gd->have_console.
+        * get the wrong value of gd->have_console.
         */
        zero_global_data();
 #endif
index 560cad02476404fdde6e4f0b4dff5f07a7ec22d1..7fb62e8b45753616053e7b3856936c0d99a0ad87 100644 (file)
@@ -226,7 +226,7 @@ int env_import(const char *buf, int check)
        return 0;
 }
 
-/* Emport the environment and generate CRC for it. */
+/* Export the environment and generate CRC for it. */
 int env_export(env_t *env_out)
 {
        char *res;
index 5752fee1cdac80369090fe0cc1cf8d58234a7866..ba18135fe13c3281fb76d0bb5047dd314ffe3a28 100644 (file)
@@ -41,7 +41,7 @@
 * to the 256 byte-"opcodes" found on the 8086. The table which
 * dispatches this is found in the files optab.[ch].
 *
-* Each opcode proc has a comment preceeding it which gives it's table
+* Each opcode proc has a comment preceding it which gives it's table
 * address.  Several opcodes are missing (undefined) in the table.
 *
 * Each proc includes information for decoding (DECODE_PRINTF and
index fd0c4f7f2fdf2fe378c11c223c7d9b1445d466e6..6125bbb558d2dce395d4693a76fa0be435f2e1fc 100644 (file)
@@ -41,7 +41,7 @@ uint32_t secmem_set_cmd(uint32_t sec_mem_cmd)
 /*!
  * CAAM page allocation:
  * Allocates a partition from secure memory, with the id
- * equal to partion_num. This will de-allocate the page
+ * equal to partition_num. This will de-allocate the page
  * if it is already allocated. The partition will have
  * full access permissions. The permissions are set before,
  * running a job descriptor. A memory page of secure RAM
index 80ef050bdc348a27e1414d89229c9d433594c141..7e0749fde3f2ef917e0f61a24ca46a8f0530b8c6 100644 (file)
@@ -1302,7 +1302,7 @@ int ddr3_tip_freq_set(u32 dev_num, enum hws_access_type access_type,
                }
 
                if (mem_mask != 0) {
-                       /* motib redundent in KW28 */
+                       /* motib redundant in KW28 */
                        CHECK_STATUS(ddr3_tip_if_write(dev_num, access_type,
                                                       if_id,
                                                       CS_ENABLE_REG, 0, 0x8));
index b71848168a64732fde151815cc5d5b6f7c3be462..ca1139676b23fff4d0f006a821fbaceb1916d30a 100644 (file)
@@ -899,7 +899,7 @@ static int ppc_4xx_eth_init (struct eth_device *dev, bd_t * bis)
         * current transfer) have got the time to arrived before
         * netloop calls eth_halt
         */
-       printf ("About preceeding transfer (eth%d):\n"
+       printf ("About preceding transfer (eth%d):\n"
                "- Sent packet number %d\n"
                "- Received packet number %d\n"
                "- Handled packet number %d\n",
index c8dcb277f2a66244b158af6eb4e56f7df3cf8827..f213587557c6baad1d958caebb0dc55c7ffba3b8 100644 (file)
@@ -594,7 +594,7 @@ static int fsl_dspi_claim_bus(struct udevice *dev)
 
        priv = dev_get_priv(bus);
 
-       /* processor special prepartion work */
+       /* processor special preparation work */
        cpu_dspi_claim_bus(bus->seq, slave_plat->cs);
 
        /* configure transfer mode */
index 1fdbdad882227cfad5d7cfa8cea1a75065e8ee70..b602e8ac46b6be055e6811697023006b9f3b48fd 100644 (file)
  * shifts the remaining entries to the front. Replacing an entry is a
  * combination of deleting the old value and adding the new one.
  *
- * The environment is preceeded by a 32 bit CRC over the data part.
+ * The environment is preceded by a 32 bit CRC over the data part.
  *
- **************************************************************************
- */
+ *************************************************************************/
 
 #if defined(CONFIG_ENV_IS_IN_FLASH)
 # ifndef       CONFIG_ENV_ADDR
index 6db71746480da8d3c015cc3726b3004a63abf494..81245bab0bc7af4509c36800d9e7b2dc72dcc450 100644 (file)
@@ -29,7 +29,7 @@
  *     2  data record with 24-bit address
  *     3  data record with 32-bit address
  *     4  symbol record (LSI extension)
- *     5  number of data records in preceeding block
+ *     5  number of data records in preceding block
  *     6  unused
  *     7  ending record for S3 records
  *     8  ending record for S2 records
index 4e52b368e44db20668b69367b9b98ceb54f3a073..afd230555c2b3144252d598c489a39b08b6a18d8 100644 (file)
@@ -499,7 +499,7 @@ int hdelete_r(const char *key, struct hsearch_data *htab, int flag)
  *
  * If the separator character is different from NUL, then any
  * separator characters and backslash characters in the values will
- * be escaped by a preceeding backslash in output. This is needed for
+ * be escaped by a preceding backslash in output. This is needed for
  * example to enable multi-line values, especially when the output
  * shall later be parsed (for example, for re-import).
  *
index 24831b3166e2821b5a59b674d1383524ee23cbc6..84f57566fda65fe7867456180ca3de4647317416 100755 (executable)
@@ -4263,7 +4263,7 @@ sub process {
                        }
                }
 
-# check for case / default statements not preceeded by break/fallthrough/switch
+# check for case / default statements not preceded by break/fallthrough/switch
                if ($line =~ /^.\s*(?:case\s+(?:$Ident|$Constant)\s*|default):/) {
                        my $has_break = 0;
                        my $has_statement = 0;
@@ -4284,7 +4284,7 @@ sub process {
                        }
                        if (!$has_break && $has_statement) {
                                WARN("MISSING_BREAK",
-                                    "Possible switch case/default not preceeded by break or fallthrough comment\n" . $herecurr);
+                                    "Possible switch case/default not preceded by break or fallthrough comment\n" . $herecurr);
                        }
                }
 
index 8d3fef40279a5bdaf6ee48d6137f18be06d3a013..b9078273c954b97c6d7740147cd51fc1e42ff4a2 100644 (file)
@@ -405,7 +405,7 @@ static int display_fdt_by_regions(struct display_info *disp, const void *blob,
  * The output of this function may or may not be a valid FDT. To ensure it
  * is, these disp->flags must be set:
  *
- *   FDT_REG_SUPERNODES: ensures that subnodes are preceeded by their
+ *   FDT_REG_SUPERNODES: ensures that subnodes are preceded by their
  *             parents. Without this option, fragments of subnode data may be
  *             output without the supernodes above them. This is useful for
  *             hashing but cannot produce a valid FDT.