env: Make the env save message a bit more explicit
Since we'll soon have support for multiple environments, the environment
saving message might end up being printed multiple times if the higher
priority environment cannot be used.
That might confuse the user, so let's make it explicit if the operation
failed or not.
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Reviewed-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
diff --git a/env/env.c b/env/env.c
index c186dca..157f1e6 100644
--- a/env/env.c
+++ b/env/env.c
@@ -168,8 +168,9 @@
if (!drv->save)
continue;
- printf("Saving Environment to %s...\n", drv->name);
+ printf("Saving Environment to %s... ", drv->name);
ret = drv->save();
+ printf("%s\n", ret ? "Failed" : "OK");
if (!ret)
return 0;