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>
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 @@
{
printf("resetting ...\n");
- printf("reset unsupported yet\n");
+ printf("reset not supported yet\n");
hang();
return 0;