From: Wolfgang Denk Date: Sat, 13 Jan 2007 10:17:10 +0000 (+0100) Subject: Undo commit 3033ebb2: reset command does not take any arguments X-Git-Tag: v1.3.0-rc1~196 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0bba5452835f19a61204edcda3a58112fd8e2208;p=pandora-u-boot.git Undo commit 3033ebb2: reset command does not take any arguments Haiying Wang's modification to the reset command was broken, undo it. Signed-off-by: Wolfgang Denk --- diff --git a/common/cmd_boot.c b/common/cmd_boot.c index 182e2ab980..e68f16f9da 100644 --- a/common/cmd_boot.c +++ b/common/cmd_boot.c @@ -83,7 +83,7 @@ U_BOOT_CMD( extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); U_BOOT_CMD( - reset, CFG_MAXARGS, 1, do_reset, + reset, 1, 0, do_reset, "reset - Perform RESET of the CPU\n", NULL );