From: Rick Chen Date: Wed, 3 Oct 2018 05:59:03 +0000 (+0800) Subject: riscv: cosmetic: Reword do_reset() printf message. X-Git-Tag: v2018.11-rc2~68^2~1 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9d9b3dc0d52b7dcfdb79d5a849fc7f1b68dd5700;p=oweals%2Fu-boot.git 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 Signed-off-by: Rick Chen --- 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;