diff mbox

[U-Boot] cmd_mmc: fix bootpart-resize maxarg to 4

Message ID CANdq1hKk7wsSxrUgGgNQCDvXNgG4uLLQsmAt8e5hEywxQLz5Gg@mail.gmail.com
State Accepted
Delegated to: Pantelis Antoniou
Headers show

Commit Message

Wally Yeh Sept. 25, 2014, 3 p.m. UTC
sub-command 'bootpart-resize' check for argc == 4,
it will retrun CMD_RET_FAILURE when argc value not matched.

but bootpart-resize's maxarg is 3, which means you never execute
this sub-command successfully.

fix it by change bootpart-resize maxarg to 4.

Signed-off-by: wally.yeh <wally.yeh@atrustcorp.com>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Pierre Aubert <p.aubert@staubli.com>
---
 common/cmd_mmc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

DEATHX Sept. 25, 2014, 7:05 p.m. UTC | #1
sorry for send this patch two times, It shows being held until the list
moderator can review it for approval.

I think maybe I didn't register the correct mail address and sent it
again. but it still show wait for moderator review.

At last I register my private mail address to this list and found I have
post the same post two time. 

I'm so sorry for this mistake.

Wally
diff mbox

Patch

diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c
index 1e40983..4286e26 100644
--- a/common/cmd_mmc.c
+++ b/common/cmd_mmc.c
@@ -602,7 +602,7 @@  static cmd_tbl_t cmd_mmc[] = {
  U_BOOT_CMD_MKENT(list, 1, 1, do_mmc_list, "", ""),
 #ifdef CONFIG_SUPPORT_EMMC_BOOT
  U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""),
- U_BOOT_CMD_MKENT(bootpart-resize, 3, 0, do_mmc_boot_resize, "", ""),
+ U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""),
  U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""),
  U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""),
 #endif