summaryrefslogtreecommitdiff
path: root/env/env.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-08-03 12:22:08 -0600
committerTom Rini <trini@konsulko.com>2017-08-15 20:50:30 -0400
commit01510091de905c46620757b9027b2e55c4b3b313 (patch)
tree6c4a3bfa6f7f35c37bd0bfe6f286218461e09577 /env/env.c
parent310fb14b2631b2175efe9b0e56d0f1630ad02d91 (diff)
env: Drop saveenv() in favour of env_save()
Use the env_save() function directly now that there is only one implementation of saveenv(). Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Wolfgang Denk <wd@denx.de> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'env/env.c')
-rw-r--r--env/env.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/env/env.c b/env/env.c
index 85d95e5747..2b8b9611cf 100644
--- a/env/env.c
+++ b/env/env.c
@@ -149,9 +149,3 @@ int env_init(void)
return 0;
}
-
-int saveenv(void)
-{
- return env_save();
-}
-