summaryrefslogtreecommitdiff
path: root/include/environment.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-08-03 21:22:06 +0300
committerTom Rini <trini@konsulko.com>2017-08-16 03:50:29 +0300
commita69d0f60e500a7ba0be8d33fb6321e3b38cd21df (patch)
treeab631ce0b40ae99152d3b5776ad3f0a2acd0706d /include/environment.h
parent6eeae42469d89d51f36b2bf1d74b091340194805 (diff)
downloadu-boot-a69d0f60e500a7ba0be8d33fb6321e3b38cd21df.tar.xz
env: Drop env_get_char_spec()
We only have a single implementation of this function now and it is called env_get_char(). Drop the old function and the weak version. Reviewed-by: Tom Rini <trini@konsulko.com> Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/environment.h')
-rw-r--r--include/environment.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/include/environment.h b/include/environment.h
index 584fd7216d..1df243462e 100644
--- a/include/environment.h
+++ b/include/environment.h
@@ -171,7 +171,6 @@ extern const unsigned char default_environment[];
extern env_t *env_ptr;
extern void env_relocate_spec(void);
-extern unsigned char env_get_char_spec(int);
#if defined(CONFIG_NEEDS_MANUAL_RELOC)
extern void env_reloc(void);
@@ -281,9 +280,6 @@ struct env_driver {
extern struct hsearch_data env_htab;
-/* Function that returns a character from the environment */
-unsigned char env_get_char(int);
-
/* Function that updates CRC of the enironment */
void env_crc_update(void);
@@ -314,6 +310,16 @@ int env_import_redund(const char *buf1, const char *buf2);
*/
struct env_driver *env_driver_lookup_default(void);
+/**
+ * env_get_char() - Get a character from the early environment
+ *
+ * This reads from the pre-relocation environemnt
+ *
+ * @index: Index of character to read (0 = first)
+ * @return character read, or -ve on error
+ */
+int env_get_char(int index);
+
#endif /* DO_DEPS_ONLY */
#endif /* _ENVIRONMENT_H_ */