From: Markus Klotzbuecher <markus.klotzbuec...@kistler.com>

 - drop CONFIG_ prefix from kconfig entry
 - fix small compilation issue with CONFIG_UBI_SILENCE_MSG

Signed-off-by: Markus Klotzbuecher <markus.klotzbuec...@kistler.com>
Cc: Heiko Schocher <h...@denx.de>
Cc: Kyungmin Park <kmp...@infradead.org>
---
 drivers/mtd/ubi/Kconfig | 2 +-
 drivers/mtd/ubi/io.c    | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/mtd/ubi/Kconfig b/drivers/mtd/ubi/Kconfig
index cf84783356..e22dda8564 100644
--- a/drivers/mtd/ubi/Kconfig
+++ b/drivers/mtd/ubi/Kconfig
@@ -1,6 +1,6 @@
 menu "UBI support"
 
-config CONFIG_UBI_SILENCE_MSG
+config UBI_SILENCE_MSG
        bool "UBI silence verbose messages"
        default ENV_IS_IN_UBI
        help
diff --git a/drivers/mtd/ubi/io.c b/drivers/mtd/ubi/io.c
index 8ef7823b37..688fb509d2 100644
--- a/drivers/mtd/ubi/io.c
+++ b/drivers/mtd/ubi/io.c
@@ -1351,6 +1351,7 @@ static int self_check_write(struct ubi_device *ubi, const 
void *buf, int pnum,
 
                ubi_err(ubi, "self-check failed for PEB %d:%d, len %d",
                        pnum, offset, len);
+#if !defined(CONFIG_UBI_SILENCE_MSG)
                ubi_msg(ubi, "data differ at position %d", i);
                ubi_msg(ubi, "hex dump of the original buffer from %d to %d",
                        i, i + dump_len);
@@ -1360,6 +1361,7 @@ static int self_check_write(struct ubi_device *ubi, const 
void *buf, int pnum,
                        i, i + dump_len);
                print_hex_dump("", DUMP_PREFIX_OFFSET, 32, 1,
                               buf1 + i, dump_len, 1);
+#endif
                dump_stack();
                err = -EINVAL;
                goto out_free;
-- 
2.20.1

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot

Reply via email to