]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Fix "par[t]ition" typo.
authorWolfgang Denk <wd@denx.de>
Tue, 17 Nov 2009 20:27:39 +0000 (21:27 +0100)
committerWolfgang Denk <wd@denx.de>
Fri, 21 May 2010 20:05:05 +0000 (22:05 +0200)
Signed-off-by: Wolfgang Denk <wd@denx.de>
common/cmd_flash.c
common/cmd_nand.c
doc/README.JFFS2_NAND

index 3773412549bd66c7d2238b3e93a65bfc27154de5..6361c4ef9bfdf24a60dae5daf428d2d66708b2ec 100644 (file)
@@ -34,7 +34,7 @@
 #if defined(CONFIG_CMD_JFFS2) && defined(CONFIG_CMD_MTDPARTS)
 #include <jffs2/jffs2.h>
 
-/* parition handling routines */
+/* partition handling routines */
 int mtdparts_init(void);
 int mtd_id_parse(const char *id, const char **ret_id, u8 *dev_type, u8 *dev_num);
 int find_dev_and_part(const char *id, struct mtd_device **dev,
@@ -368,7 +368,7 @@ int do_flerase (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
                                addr_first = part->offset + info->start[0];
                                addr_last = addr_first + part->size - 1;
 
-                               printf ("Erase Flash Parition %s, "
+                               printf ("Erase Flash Partition %s, "
                                                "bank %ld, 0x%08lx - 0x%08lx ",
                                                argv[1], bank, addr_first,
                                                addr_last);
@@ -576,7 +576,7 @@ int do_protect (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
                                addr_first = part->offset + info->start[0];
                                addr_last = addr_first + part->size - 1;
 
-                               printf ("%sProtect Flash Parition %s, "
+                               printf ("%sProtect Flash Partition %s, "
                                                "bank %ld, 0x%08lx - 0x%08lx\n",
                                                p ? "" : "Un", argv[1],
                                                bank, addr_first, addr_last);
index 9b0c9305306f7b6c3f55a93e185606b07067a85a..f611fd77178781d77b23bea6f50d9bf6aa4b62db 100644 (file)
@@ -19,7 +19,7 @@
 
 #if defined(CONFIG_CMD_MTDPARTS)
 
-/* parition handling routines */
+/* partition handling routines */
 int mtdparts_init(void);
 int id_parse(const char *id, const char **ret_id, u8 *dev_type, u8 *dev_num);
 int find_dev_and_part(const char *id, struct mtd_device **dev,
index 2b3326bc152bf704e3fe322f6b48a667899a1c80..5018ae8342597f16f58c02c04355282b13703d65 100644 (file)
@@ -5,7 +5,7 @@ To ebable, use the following #define in the board configuration file:
 #define CONFIG_JFFS2_NAND 1
 
 Configuration of partitions is similar to how this is done in  U-Boot
-for  JFFS2  on top NOR flash. If a single parition is used, it can be
+for  JFFS2  on top NOR flash. If a single partition is used, it can be
 configured using the following #defines in the configuration file:
 
 #define CONFIG_JFFS2_NAND_DEV 0                        /* nand device jffs2 lives on */