diff options
author | Ralph Siemsen <ralph.siemsen@linaro.org> | 2019-08-27 14:28:19 -0400 |
---|---|---|
committer | Marek Vasut <marek.vasut+renesas@gmail.com> | 2019-10-31 12:12:31 +0100 |
commit | 0a815ff7bb22b034d15758d41816df1c3d554c14 (patch) | |
tree | e33f3537f0fb15a4d628e65e9b289d2acf3d0141 /drivers/dfu/dfu_nand.c | |
parent | d624434f5ebc5e3eb5f5609f06200f477cf8d8b5 (diff) | |
download | u-boot-0a815ff7bb22b034d15758d41816df1c3d554c14.tar.gz |
dfu: dfu_nand: reduce verbosity
In combination with multiple partitions in NAND, this printf() ends up
being more noise than helpful. Change it to debug() instead.
Signed-off-by: Ralph Siemsen <ralph.siemsen@linaro.org>
Acked-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'drivers/dfu/dfu_nand.c')
-rw-r--r-- | drivers/dfu/dfu_nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dfu/dfu_nand.c b/drivers/dfu/dfu_nand.c index 0bfdbf9428..b812a3dfb1 100644 --- a/drivers/dfu/dfu_nand.c +++ b/drivers/dfu/dfu_nand.c @@ -214,7 +214,7 @@ int dfu_fill_entity_nand(struct dfu_entity *dfu, char *devstr, char *s) part = simple_strtoul(s, &s, 10); sprintf(mtd_id, "%s%d,%d", "nand", dev, part - 1); - printf("using id '%s'\n", mtd_id); + debug("using id '%s'\n", mtd_id); mtdparts_init(); |