[U-Boot] [PATCH 25/30] env: Drop env_init_new()
Simon Glass
sjg at chromium.org
Sun Jul 9 20:53:08 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>
---
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.13.2.725.g09c95d1e9-goog
More information about the U-Boot
mailing list