[U-Boot] [PATCH v4 17/29] env: Drop env_init_new()
Simon Glass
sjg at chromium.org
Mon Jul 31 14:46:17 UTC 2017
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 at chromium.org>
Reviewed-by: Tom Rini <trini at konsulko.com>
---
Changes in v4: None
Changes in v3: None
Changes in v2: None
env/env.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/env/env.c b/env/env.c
index 53a085c431..ac6a583a02 100644
--- a/env/env.c
+++ b/env/env.c
@@ -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();
-}
--
2.14.0.rc0.400.g1c36432dff-goog
More information about the U-Boot
mailing list