env: Drop env_init_new()

Now that env_init() is only defined once we can drop the env_init_new()
name and just use env_init().

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:05 -06:00 committed by Tom Rini
parent 98b5755fb0
commit 6eeae42469

6
env/env.c vendored
View File

@ -125,7 +125,7 @@ int env_save(void)
return 0;
}
int env_init_new(void)
int env_init(void)
{
struct env_driver *drv = env_driver_lookup_default();
int ret = -ENOENT;
@ -163,7 +163,3 @@ int saveenv(void)
return env_save();
}
int env_init(void)
{
return env_init_new();
}