mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-11-30 07:01:32 +01:00
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:
parent
eeba55cb4a
commit
c55d8b9400
2
env/env.c
vendored
2
env/env.c
vendored
@ -98,7 +98,7 @@ int env_load(void)
|
|||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
if (!drv->load)
|
if (!drv->load)
|
||||||
return 0;
|
return 0;
|
||||||
drv->load(); /* TODO(sjg@chromium.org): Make this return an error */
|
ret = drv->load();
|
||||||
if (ret) {
|
if (ret) {
|
||||||
debug("%s: Environment failed to load (err=%d)\n", __func__,
|
debug("%s: Environment failed to load (err=%d)\n", __func__,
|
||||||
ret);
|
ret);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user