From: Simon Glass Date: Sat, 14 May 2016 20:02:54 +0000 (-0600) Subject: reset: Drop the reset failure message X-Git-Tag: v2016.07-rc1~69^2~16 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5c0862155c883b9e134fae72d25f1b5a93260510;p=u-boot reset: Drop the reset failure message This adds to code size and is not needed, since hang() will print a message. Signed-off-by: Simon Glass --- diff --git a/drivers/misc/sysreset-uclass.c b/drivers/misc/sysreset-uclass.c index e41efcaca6..3566d17fb1 100644 --- a/drivers/misc/sysreset-uclass.c +++ b/drivers/misc/sysreset-uclass.c @@ -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(); }