From 5c0862155c883b9e134fae72d25f1b5a93260510 Mon Sep 17 00:00:00 2001
From: Simon Glass <sjg@chromium.org>
Date: Sat, 14 May 2016 14:02:54 -0600
Subject: [PATCH] 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>
---
 drivers/misc/sysreset-uclass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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