projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c411d8
)
reset: Drop the reset failure message
author
Simon Glass
<sjg@chromium.org>
Sat, 14 May 2016 20:02:54 +0000
(14:02 -0600)
committer
Simon 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
patch
|
blob
|
history
diff --git
a/drivers/misc/sysreset-uclass.c
b/drivers/misc/sysreset-uclass.c
index e41efcaca602cf7a4faf2583f09666591e78365d..3566d17fb1b79b3396415bbb8c8fe583f40804f2 100644
(file)
--- 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();
}