env: Allow env_load() to detect errors

Now that we have errors available in the environment driver's load()
method, check the return valid.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2017-08-20 04:45:14 -06:00 committed by Tom Rini
parent eeba55cb4a
commit c55d8b9400

2
env/env.c vendored
View File

@ -98,7 +98,7 @@ int env_load(void)
return -ENODEV;
if (!drv->load)
return 0;
drv->load(); /* TODO(sjg@chromium.org): Make this return an error */
ret = drv->load();
if (ret) {
debug("%s: Environment failed to load (err=%d)\n", __func__,
ret);