[Feature][T106]ZXW P56U09 code
Only Configure: Yes
Affected branch: master
Affected module: unknow
Is it affected on both ZXIC and MTK: only ZXIC
Self-test: No
Doc Update: No
Change-Id: I3cbd8b420271eb20c2b40ebe5c78f83059cd42f3
diff --git a/boot/common/src/uboot/drivers/misc/debug.c b/boot/common/src/uboot/drivers/misc/debug.c
new file mode 100644
index 0000000..611a603
--- /dev/null
+++ b/boot/common/src/uboot/drivers/misc/debug.c
@@ -0,0 +1,16 @@
+/*
+ * (C) Copyright 2016, ZIXC Corporation.
+ *
+ */
+
+#include <common.h>
+#include <asm/io.h>
+#include <asm/arch/hardware.h>
+
+#if DEBUG
+void show_boot_progress(int val)
+{
+ printf("show_boot_progress(%d)\n", val);
+}
+
+#endif