diff options
author | Simon Goldschmidt <sgoldschmidt@de.pepperl-fuchs.com> | 2018-01-31 14:47:12 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-02-01 08:05:53 -0500 |
commit | 2166ebf7831674508425daf50c78e481083c6462 (patch) | |
tree | 7f872e44844c2ec406737d71a71188368e3be38a /env/ext4.c | |
parent | 31f044bd91df58bed6bb8cfadfc187eedac1442e (diff) | |
download | u-boot-2166ebf7831674508425daf50c78e481083c6462.tar.gz |
env: make env drivers propagate env_import return value
For multiple env drivers to correctly implement fallback when
one environment fails to load (e.g. crc error), the return value
of env_import has to be propagated by all env driver's load
function.
Without this change, the first driver that succeeds to load an
environment with an invalid CRC return 0 (success) and no other
drivers are checked.
Signed-off-by: Simon Goldschmidt <sgoldschmidt@de.pepperl-fuchs.com>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'env/ext4.c')
-rw-r--r-- | env/ext4.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/env/ext4.c b/env/ext4.c index 9cdf28e79f..3f3aac5737 100644 --- a/env/ext4.c +++ b/env/ext4.c @@ -114,8 +114,7 @@ static int env_ext4_load(void) goto err_env_relocate; } - env_import(buf, 1); - return 0; + return env_import(buf, 1); err_env_relocate: set_default_env(NULL); |