riscv: cosmetic: Reword do_reset() printf message.
authorRick Chen <rick@andestech.com>
Wed, 3 Oct 2018 05:59:03 +0000 (13:59 +0800)
committerAndes <uboot@andestech.com>
Wed, 3 Oct 2018 09:49:27 +0000 (17:49 +0800)
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>
arch/riscv/lib/reset.c

index a6aa8e25943e8e7d69893a6f0be845bbc716a63d..b8cecb309dcf96d5a67750668efff74c5bbfb2bf 100644 (file)
@@ -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;