diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:58 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | 4e9ce8a65fe4510664822a2de4b0d2cf61859b6c (patch) | |
tree | aef66196ad3830d10e731f0cb757c54cea85bba8 /include/environment.h | |
parent | 4be490ae337355c56da6122d263ef7747d48f983 (diff) | |
download | u-boot-4e9ce8a65fe4510664822a2de4b0d2cf61859b6c.zip u-boot-4e9ce8a65fe4510664822a2de4b0d2cf61859b6c.tar.gz u-boot-4e9ce8a65fe4510664822a2de4b0d2cf61859b6c.tar.bz2 |
env: Move env import/export functions to env.h
Move these functions 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 | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/environment.h b/include/environment.h index b921b8f..c740d5a 100644 --- a/include/environment.h +++ b/include/environment.h @@ -274,18 +274,6 @@ char *env_get_default(const char *name); /* [re]set to the default environment */ void set_default_env(const char *s, int flags); -/* Import from binary representation into hash table */ -int env_import(const char *buf, int check); - -/* Export from hash table into binary representation */ -int env_export(env_t *env_out); - -#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT -/* Select and import one of two redundant environments */ -int env_import_redund(const char *buf1, int buf1_status, - const char *buf2, int buf2_status); -#endif - /** * env_get_char() - Get a character from the early environment * |