1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 16:52:14 +02:00

env: Drop env_relocate_spec() in favour of env_load()

This is a strange name for a function that loads the environment. There is
now only one implementation of this function, so use the new env_load()
function directly instead.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Simon Glass
2017-08-03 12:22:07 -06:00
committed by Tom Rini
parent a69d0f60e5
commit 310fb14b26
9 changed files with 14 additions and 14 deletions

5
env/env.c vendored
View File

@@ -150,11 +150,6 @@ int env_init(void)
return 0;
}
void env_relocate_spec(void)
{
env_load();
}
int saveenv(void)
{
return env_save();