diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2007-01-13 11:17:10 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-01-13 11:17:10 +0100 |
commit | 0bba5452835f19a61204edcda3a58112fd8e2208 (patch) | |
tree | e25ba686175ff5276099c3ba26755c8b633ddbc0 /common/cmd_boot.c | |
parent | bab5a90d4ccc1a46a8127b867fa59028cc623ad9 (diff) | |
download | u-boot-0bba5452835f19a61204edcda3a58112fd8e2208.zip u-boot-0bba5452835f19a61204edcda3a58112fd8e2208.tar.gz u-boot-0bba5452835f19a61204edcda3a58112fd8e2208.tar.bz2 |
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 <wd@denx.de>
Diffstat (limited to 'common/cmd_boot.c')
-rw-r--r-- | common/cmd_boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_boot.c b/common/cmd_boot.c index 182e2ab..e68f16f 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 ); |