aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorJoe Hershberger2013-04-08 05:32:49 -0500
committerTom Rini2013-04-11 14:52:54 -0500
commit147162dac6506d2ed96ba5869772f87fb1f49a0b (patch)
tree3e66f772f3fc039e31831cb951758487228740ef /common
parent70c219cd7ceba104c2cc87940bb2f688b4b0a752 (diff)
downloadu-boot-147162dac6506d2ed96ba5869772f87fb1f49a0b.tar.gz
u-boot-147162dac6506d2ed96ba5869772f87fb1f49a0b.tar.xz
u-boot-147162dac6506d2ed96ba5869772f87fb1f49a0b.zip
ubi: ubifs: Turn off verbose prints
The prints are out of control. SILENCE! Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'common')
-rw-r--r--common/cmd_ubi.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/cmd_ubi.c b/common/cmd_ubi.c
index 41fbae734b..5ba4feb485 100644
--- a/common/cmd_ubi.c
+++ b/common/cmd_ubi.c
@@ -23,6 +23,9 @@
23#include <asm/errno.h> 23#include <asm/errno.h>
24#include <jffs2/load_kernel.h> 24#include <jffs2/load_kernel.h>
25 25
26#undef ubi_msg
27#define ubi_msg(fmt, ...) printf("UBI: " fmt "\n", ##__VA_ARGS__)
28
26#define DEV_TYPE_NONE 0 29#define DEV_TYPE_NONE 0
27#define DEV_TYPE_NAND 1 30#define DEV_TYPE_NAND 1
28#define DEV_TYPE_ONENAND 2 31#define DEV_TYPE_ONENAND 2