diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:57 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | 4be490ae337355c56da6122d263ef7747d48f983 (patch) | |
tree | 704ef0bff634025eaaa98e0d66b81cea2cc74d9e /include/environment.h | |
parent | 0b9d8a0556e577190876ae756cf1de97104c9b41 (diff) | |
download | u-boot-4be490ae337355c56da6122d263ef7747d48f983.tar.gz u-boot-4be490ae337355c56da6122d263ef7747d48f983.tar.xz u-boot-4be490ae337355c56da6122d263ef7747d48f983.zip |
env: Move env_load/save functions to env.h
Move these function to the new header file.
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/environment.h')
-rw-r--r-- | include/environment.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/include/environment.h b/include/environment.h index 97d4886599..b921b8f28e 100644 --- a/include/environment.h +++ b/include/environment.h @@ -296,27 +296,6 @@ int env_import_redund(const char *buf1, int buf1_status, */ int env_get_char(int index); -/** - * env_load() - Load the environment from storage - * - * @return 0 if OK, -ve on error - */ -int env_load(void); - -/** - * env_save() - Save the environment to storage - * - * @return 0 if OK, -ve on error - */ -int env_save(void); - -/** - * env_erase() - Erase the environment on storage - * - * @return 0 if OK, -ve on error - */ -int env_erase(void); - #endif /* DO_DEPS_ONLY */ #endif /* _ENVIRONMENT_H_ */ |