Skip to content
Snippets Groups Projects
Commit a69d0f60 authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

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: default avatarTom Rini <trini@konsulko.com>
Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 6eeae424
No related branches found
No related tags found
No related merge requests found
...@@ -27,20 +27,6 @@ struct hsearch_data env_htab = { ...@@ -27,20 +27,6 @@ struct hsearch_data env_htab = {
.change_ok = env_flags_validate, .change_ok = env_flags_validate,
}; };
__weak uchar env_get_char_spec(int index)
{
return *(uchar *)(gd->env_addr + index);
}
uchar env_get_char(int index)
{
/* if env is not set up, or crc was bad, use the default environment */
if (!gd->env_valid)
return default_environment[index];
else
return env_get_char_spec(index);
}
/* /*
* Read an environment variable as a boolean * Read an environment variable as a boolean
* Return -1 if variable does not exist (default to true) * Return -1 if variable does not exist (default to true)
......
...@@ -69,11 +69,13 @@ struct env_driver *env_driver_lookup_default(void) ...@@ -69,11 +69,13 @@ struct env_driver *env_driver_lookup_default(void)
return drv; return drv;
} }
int env_get_char_new(int index) int env_get_char(int index)
{ {
struct env_driver *drv = env_driver_lookup_default(); struct env_driver *drv = env_driver_lookup_default();
int ret; int ret;
if (!gd->env_valid)
return default_environment[index];
if (!drv) if (!drv)
return -ENODEV; return -ENODEV;
if (!drv->get_char) if (!drv->get_char)
...@@ -148,11 +150,6 @@ int env_init(void) ...@@ -148,11 +150,6 @@ int env_init(void)
return 0; return 0;
} }
unsigned char env_get_char_spec(int index)
{
return *(uchar *)(gd->env_addr + index);
}
void env_relocate_spec(void) void env_relocate_spec(void)
{ {
env_load(); env_load();
......
...@@ -171,7 +171,6 @@ extern const unsigned char default_environment[]; ...@@ -171,7 +171,6 @@ extern const unsigned char default_environment[];
extern env_t *env_ptr; extern env_t *env_ptr;
extern void env_relocate_spec(void); extern void env_relocate_spec(void);
extern unsigned char env_get_char_spec(int);
#if defined(CONFIG_NEEDS_MANUAL_RELOC) #if defined(CONFIG_NEEDS_MANUAL_RELOC)
extern void env_reloc(void); extern void env_reloc(void);
...@@ -281,9 +280,6 @@ struct env_driver { ...@@ -281,9 +280,6 @@ struct env_driver {
extern struct hsearch_data env_htab; 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 */ /* Function that updates CRC of the enironment */
void env_crc_update(void); void env_crc_update(void);
...@@ -314,6 +310,16 @@ int env_import_redund(const char *buf1, const char *buf2); ...@@ -314,6 +310,16 @@ int env_import_redund(const char *buf1, const char *buf2);
*/ */
struct env_driver *env_driver_lookup_default(void); 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 /* DO_DEPS_ONLY */
#endif /* _ENVIRONMENT_H_ */ #endif /* _ENVIRONMENT_H_ */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment