diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2018-01-23 21:16:57 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-01-27 09:19:11 -0500 |
commit | 58ae9990c0280ff5382d826ad752512baad223a8 (patch) | |
tree | fcbaf2438c2ad20d8e40c37367b41695dc027436 /env | |
parent | 29b8f21053e1378b0f21c3ad47169c21b67fb423 (diff) | |
download | u-boot-58ae9990c0280ff5382d826ad752512baad223a8.tar.gz u-boot-58ae9990c0280ff5382d826ad752512baad223a8.tar.bz2 u-boot-58ae9990c0280ff5382d826ad752512baad223a8.zip |
env: common: Make the debug messages play a little nicer
Since we have global messages to indicate what's going on, the custom
messages in the environment drivers only make the output less readable.
Make the common code play a little nicer by removing all the extra output
in the standard case.
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'env')
-rw-r--r-- | env/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/env/common.c b/env/common.c index 8167ea2992..c633502d68 100644 --- a/env/common.c +++ b/env/common.c @@ -78,7 +78,7 @@ void set_default_env(const char *s) puts(s); } } else { - puts("Using default environment\n\n"); + debug("Using default environment\n"); } if (himport_r(&env_htab, (char *)default_environment, |