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 <sjg@chromium.org>
This commit is contained in:
Simon Glass 2016-05-14 14:02:54 -06:00
parent 5c411d88be
commit 5c0862155c

View 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();
}