diff options
author | Simon Glass <sjg@chromium.org> | 2016-05-14 14:02:54 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-05-26 20:50:29 -0600 |
commit | 5c0862155c883b9e134fae72d25f1b5a93260510 (patch) | |
tree | 20e16fff15b5238ad21807fe35e91f3c2a791f31 | |
parent | 5c411d88be8df5f6a8a1ea0c961f7c35ba82c064 (diff) | |
download | u-boot-imx-5c0862155c883b9e134fae72d25f1b5a93260510.zip u-boot-imx-5c0862155c883b9e134fae72d25f1b5a93260510.tar.gz u-boot-imx-5c0862155c883b9e134fae72d25f1b5a93260510.tar.bz2 |
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>
-rw-r--r-- | drivers/misc/sysreset-uclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/sysreset-uclass.c b/drivers/misc/sysreset-uclass.c index e41efca..3566d17 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(); } |