浏览代码

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>
Simon Glass 9 年之前
父节点
当前提交
5c0862155c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/misc/sysreset-uclass.c

+ 1 - 1
drivers/misc/sysreset-uclass.c

@@ -55,7 +55,7 @@ void sysreset_walk_halt(enum sysreset_t type)
 		mdelay(100);
 		mdelay(100);
 
 
 	/* Still no reset? Give up */
 	/* Still no reset? Give up */
-	printf("System reset not supported on this platform\n");
+	debug("System reset not supported on this platform\n");
 	hang();
 	hang();
 }
 }