]> git.sur5r.net Git - u-boot/commitdiff
reset: Drop the reset failure message
authorSimon Glass <sjg@chromium.org>
Sat, 14 May 2016 20:02:54 +0000 (14:02 -0600)
committerSimon Glass <sjg@chromium.org>
Fri, 27 May 2016 02:50:29 +0000 (20:50 -0600)
This adds to code size and is not needed, since hang() will print a message.

Signed-off-by: Simon Glass <sjg@chromium.org>
drivers/misc/sysreset-uclass.c

index e41efcaca602cf7a4faf2583f09666591e78365d..3566d17fb1b79b3396415bbb8c8fe583f40804f2 100644 (file)
@@ -55,7 +55,7 @@ void sysreset_walk_halt(enum sysreset_t type)
                mdelay(100);
 
        /* Still no reset? Give up */
-       printf("System reset not supported on this platform\n");
+       debug("System reset not supported on this platform\n");
        hang();
 }