summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Chen <rick@andestech.com>2018-10-03 13:59:03 +0800
committerAndes <uboot@andestech.com>2018-10-03 17:49:27 +0800
commit9d9b3dc0d52b7dcfdb79d5a849fc7f1b68dd5700 (patch)
tree3387334bd69636aa5e576de58c3c17e720796795
parentb984ddc2dd332117ef1345255a99dc248c826b74 (diff)
riscv: cosmetic: Reword do_reset() printf message.
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>
-rw-r--r--arch/riscv/lib/reset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/lib/reset.c b/arch/riscv/lib/reset.c
index a6aa8e2594..b8cecb309d 100644
--- 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 unsupported yet\n");
+ printf("reset not supported yet\n");
hang();
return 0;