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_mmc.c | |
| parent | 5c427e49ce09c7e991ce63a686cb600bff3c877a (diff) | |
| download | olio-uboot-2014.01-1f8b546f9e782b7eb9815368efa906b5718c6e9b.tar.xz olio-uboot-2014.01-1f8b546f9e782b7eb9815368efa906b5718c6e9b.zip | |
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_mmc.c')
| -rw-r--r-- | common/cmd_mmc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index 1cdeb443f..67a94a746 100644 --- a/common/cmd_mmc.c +++ b/common/cmd_mmc.c @@ -260,7 +260,7 @@ static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  				if (!ret)  					mmc->part_num = part; -				printf("switch to partions #%d, %s\n", +				printf("switch to partitions #%d, %s\n",  						part, (!ret) ? "OK" : "ERROR");  			}  		} @@ -421,7 +421,7 @@ U_BOOT_CMD(  	"mmc close <dev> <boot_partition>\n"  	" - Enable boot_part for booting and disable access to boot_part\n"  	"mmc bootpart <device num> <boot part size MB> <RPMB part size MB>\n" -	" - change sizes of boot and RPMB partions of specified device\n" +	" - change sizes of boot and RPMB partitions of specified device\n"  #endif  	);  #endif /* !CONFIG_GENERIC_MMC */ |