diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2013-08-21 11:39:19 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-09-20 10:29:48 -0400 |
commit | 1f8b546f9e782b7eb9815368efa906b5718c6e9b (patch) | |
tree | 481c9221e3dfd3ebbbc0bb44dbafa144fa4e92c2 /common/cmd_gpt.c | |
parent | 5c427e49ce09c7e991ce63a686cb600bff3c877a (diff) | |
download | u-boot-imx-1f8b546f9e782b7eb9815368efa906b5718c6e9b.zip u-boot-imx-1f8b546f9e782b7eb9815368efa906b5718c6e9b.tar.gz u-boot-imx-1f8b546f9e782b7eb9815368efa906b5718c6e9b.tar.bz2 |
Fix some obvious typos across multiple subsystems.
Typoes fixed:
"partion" -> "partition"
"retrive", "retreive" -> "retrieve"
"th" -> "to"
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Diffstat (limited to 'common/cmd_gpt.c')
-rw-r--r-- | common/cmd_gpt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_gpt.c b/common/cmd_gpt.c index 06767aa..a46f5cc 100644 --- a/common/cmd_gpt.c +++ b/common/cmd_gpt.c @@ -161,7 +161,7 @@ static int set_gpt_info(block_dev_desc_t *dev_desc, /* allocate memory for partitions */ parts = calloc(sizeof(disk_partition_t), p_count); - /* retrive partions data from string */ + /* retrieve partitions data from string */ for (i = 0; i < p_count; i++) { tok = strsep(&s, ";"); @@ -316,7 +316,7 @@ static int do_gpt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) U_BOOT_CMD(gpt, CONFIG_SYS_MAXARGS, 1, do_gpt, "GUID Partition Table", - "<command> <interface> <dev> <partions_list>\n" + "<command> <interface> <dev> <partitions_list>\n" " - GUID partition table restoration\n" " Restore GPT information on a device connected\n" " to interface\n" |