diff options
author | Rick Chen <rick@andestech.com> | 2018-10-03 13:59:03 +0800 |
---|---|---|
committer | Andes <uboot@andestech.com> | 2018-10-03 17:49:27 +0800 |
commit | 9d9b3dc0d52b7dcfdb79d5a849fc7f1b68dd5700 (patch) | |
tree | 3387334bd69636aa5e576de58c3c17e720796795 /arch/riscv | |
parent | b984ddc2dd332117ef1345255a99dc248c826b74 (diff) | |
download | u-boot-9d9b3dc0d52b7dcfdb79d5a849fc7f1b68dd5700.tar.gz u-boot-9d9b3dc0d52b7dcfdb79d5a849fc7f1b68dd5700.tar.bz2 u-boot-9d9b3dc0d52b7dcfdb79d5a849fc7f1b68dd5700.zip |
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>
Diffstat (limited to 'arch/riscv')
-rw-r--r-- | arch/riscv/lib/reset.c | 2 |
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; |