projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b984ddc
)
riscv: cosmetic: Reword do_reset() printf message.
author
Rick Chen
<rick@andestech.com>
Wed, 3 Oct 2018 05:59:03 +0000
(13:59 +0800)
committer
Andes
<uboot@andestech.com>
Wed, 3 Oct 2018 09:49:27 +0000
(17:49 +0800)
The Sentence "reset unsupported yet" is not
grammatically correct and should say
"reset not supported yet" instead.
Suggested-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de>
Signed-off-by: Rick Chen <rick@andestech.com>
arch/riscv/lib/reset.c
patch
|
blob
|
history
diff --git
a/arch/riscv/lib/reset.c
b/arch/riscv/lib/reset.c
index a6aa8e25943e8e7d69893a6f0be845bbc716a63d..b8cecb309dcf96d5a67750668efff74c5bbfb2bf 100644
(file)
--- a/
arch/riscv/lib/reset.c
+++ b/
arch/riscv/lib/reset.c
@@
-10,7
+10,7
@@
int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
printf("resetting ...\n");
- printf("reset
un
supported yet\n");
+ printf("reset
not
supported yet\n");
hang();
return 0;