提交 eeba55cb 编写于 作者: T Tom Rini

env: Correct case of no sub-init function

With the change to the environment code to remove the common init stage
of pointing to the default environment and setting it as valid, combined
with the change to switch gd->env_valid from 0/1/2 to an enum we now
must set env_valid to one of the enum values rather than an int.  And in
this case, not only was setting it to an int wrong, it was now the wrong
value.  Finally, in the case of ENV_IS_NOWHERE we must still say that
our envionrment is invalid after init for things to continue to
function.

Fixes: 7938822a ("env: Drop common init() functions")
Tested-by: NMarek Vasut <marek.vasut@gmail.com>
Reported-by: NMarek Vasut <marek.vasut@gmail.com>
Reported-by: NAndy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: NTom Rini <trini@konsulko.com>
---
Changes in v3:
- Actually include changes for env/nowhere.c
上级 f1a7ba1d
......@@ -138,7 +138,7 @@ int env_init(void)
ret = drv->init();
if (ret == -ENOENT) {
gd->env_addr = (ulong)&default_environment[0];
gd->env_valid = 0;
gd->env_valid = ENV_VALID;
return 0;
} else if (ret) {
......
......@@ -15,7 +15,20 @@
DECLARE_GLOBAL_DATA_PTR;
/*
* Because we only ever have the default environment available we must mark
* it as invalid.
*/
static int env_nowhere_init(void)
{
gd->env_addr = (ulong)&default_environment[0];
gd->env_valid = ENV_INVALID;
return 0;
}
U_BOOT_ENV_LOCATION(nowhere) = {
.location = ENVL_NOWHERE,
.init = env_nowhere_init,
ENV_NAME("nowhere")
};
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册