[U-Boot] [PATCH v2 27/34] env: Drop env_init_new()
Simon Glass
sjg at chromium.org
Mon Jul 24 03:20:02 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>
---
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 a649457270..70ce2857c3 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 = -ENOSYS;
@@ -169,7 +169,3 @@ int saveenv(void)
return env_save();
}
-int env_init(void)
-{
- return env_init_new();
-}
--
2.14.0.rc0.284.gd933b75aa4-goog
More information about the U-Boot
mailing list