diff options
author | Simon Glass <sjg@chromium.org> | 2017-08-20 04:45:15 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-20 19:27:44 -0400 |
commit | 2d7cb5b426e7e0cdf684d7f8029ad132d7a8d383 (patch) | |
tree | d065adc9532ed66f8fde2109f679d2d8f155d02d /env/flash.c | |
parent | c55d8b940047050176ded2e24be74f4a97e093e3 (diff) | |
download | u-boot-2d7cb5b426e7e0cdf684d7f8029ad132d7a8d383.tar.gz |
env: Replace all open-coded gd->env_valid values with ENV_ flags
Some of these were missed in the conversion.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'env/flash.c')
-rw-r--r-- | env/flash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/env/flash.c b/env/flash.c index b60be57a8d..bac10ff985 100644 --- a/env/flash.c +++ b/env/flash.c @@ -94,7 +94,7 @@ static int env_flash_init(void) gd->env_valid = ENV_VALID; } else if (!crc1_ok && !crc2_ok) { gd->env_addr = addr_default; - gd->env_valid = 0; + gd->env_valid = ENV_INVALID; } else if (flag1 == ACTIVE_FLAG && flag2 == OBSOLETE_FLAG) { gd->env_addr = addr1; gd->env_valid = ENV_VALID; @@ -231,7 +231,7 @@ static int env_flash_init(void) } gd->env_addr = (ulong)&default_environment[0]; - gd->env_valid = 0; + gd->env_valid = ENV_INVALID; return 0; } #endif |