diff options
author | Igor Opaniuk | 2021-04-01 02:01:55 +0300 |
---|---|---|
committer | Tom Rini | 2021-04-20 07:31:12 -0400 |
commit | a6713b3a3c7adf4a99e9ad8c04356fce200fb83f (patch) | |
tree | ec558ebf93ac28fc6456e22e19a23b7973075067 /cmd | |
parent | 91f00ba2c1c980236ba526b5e8f34e982e7b48d8 (diff) |
sysreset: provide type of reset in do_reset cmd
Add additional param for reset cmd, which provides type of reset.
Signed-off-by: Igor Opaniuk <igor.opaniuk@foundries.io>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/boot.c b/cmd/boot.c index 36aba22b301..b84c0ed89ec 100644 --- a/cmd/boot.c +++ b/cmd/boot.c @@ -56,7 +56,7 @@ U_BOOT_CMD( #endif U_BOOT_CMD( - reset, 1, 0, do_reset, + reset, 2, 0, do_reset, "Perform RESET of the CPU", "" ); |