diff options
author | Sam Protsenko <semen.protsenko@linaro.org> | 2018-07-30 19:19:27 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-08-10 13:45:34 -0400 |
commit | 8f690848b8a58b5da56eb08d013e63517e558292 (patch) | |
tree | 8254f75d0263bbfc4ad6afa5a4687d57c9f6ae65 /disk | |
parent | 13bbfb4a395d1c0811cd8624cda64ad2ad4746bf (diff) | |
download | u-boot-8f690848b8a58b5da56eb08d013e63517e558292.tar.gz |
disk: part: Don't show redundant error message
Underlying API should already print some meaningful error message, so
this one is just brings more noise. E.g. we can see log like this:
MMC: no card present
** Bad device mmc 0 **
Obviously, second error message is unwanted. Let's only print it in case
when DEBUG is defined to keep log short and clear.
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Diffstat (limited to 'disk')
-rw-r--r-- | disk/part.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/disk/part.c b/disk/part.c index 9266a09ec3..9e457a6e72 100644 --- a/disk/part.c +++ b/disk/part.c @@ -400,7 +400,7 @@ int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str, *dev_desc = get_dev_hwpart(ifname, dev, hwpart); if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) { - printf("** Bad device %s %s **\n", ifname, dev_hwpart_str); + debug("** Bad device %s %s **\n", ifname, dev_hwpart_str); dev = -ENOENT; goto cleanup; } |