mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-26 17:11:32 +00:00
mmc: clean up help texts
Remove some repeated words and superfluous newlines in the mmc command help entries. Signed-off-by: Rabin Vincent <rabin@rab.in>
This commit is contained in:
parent
5520ab1f76
commit
ac0865ff33
1 changed files with 5 additions and 4 deletions
|
@ -135,8 +135,9 @@ int do_mmcinfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
U_BOOT_CMD(mmcinfo, 2, 0, do_mmcinfo, "mmcinfo <dev num>-- display MMC info\n",
|
U_BOOT_CMD(mmcinfo, 2, 0, do_mmcinfo,
|
||||||
NULL);
|
"print MMC information",
|
||||||
|
"<dev num>\n");
|
||||||
|
|
||||||
int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
@ -218,8 +219,8 @@ int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
||||||
U_BOOT_CMD(
|
U_BOOT_CMD(
|
||||||
mmc, 6, 1, do_mmcops,
|
mmc, 6, 1, do_mmcops,
|
||||||
"MMC sub system",
|
"MMC sub system",
|
||||||
"mmc read <device num> addr blk# cnt\n"
|
"read <device num> addr blk# cnt\n"
|
||||||
"mmc write <device num> addr blk# cnt\n"
|
"mmc write <device num> addr blk# cnt\n"
|
||||||
"mmc rescan <device num>\n"
|
"mmc rescan <device num>\n"
|
||||||
"mmc list - lists available devices\n");
|
"mmc list - list available devices\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue