]> git.baikalelectronics.ru Git - uboot.git/commit
env: mcc: fix compilation error with ENV_IS_EMBEDDED
authorPatrick Delaunay <patrick.delaunay@foss.st.com>
Thu, 10 Nov 2022 10:49:00 +0000 (11:49 +0100)
committerTom Rini <trini@konsulko.com>
Tue, 10 Jan 2023 17:37:09 +0000 (12:37 -0500)
commit1c3dc9c0b4e4c9cfea2c69ce3c826ef68a484a0a
tree4df6813a90a952362cc571be80e68dd46e7b6906
parent591dbade1a45e5f34d7f514f3ec8793303d35d17
env: mcc: fix compilation error with ENV_IS_EMBEDDED

When ENV_IS_EMBEDDED is enabled, ret is not defined but is used as a
return value in env_mmc_load().
This patch correct this issue and simplify the existing code, test only
one time #if defined(ENV_IS_EMBEDDED) and not in the function.

Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
env/mmc.c