From 9d9b3dc0d52b7dcfdb79d5a849fc7f1b68dd5700 Mon Sep 17 00:00:00 2001 From: Rick Chen Date: Wed, 3 Oct 2018 13:59:03 +0800 Subject: [PATCH] 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 --- arch/riscv/lib/reset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/riscv/lib/reset.c b/arch/riscv/lib/reset.c index a6aa8e2..b8cecb3 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;