Skip to content
Snippets Groups Projects
Commit 3bb89e5b authored by Igor Grinberg's avatar Igor Grinberg Committed by Tom Rini
Browse files

env: remove duplicated env_get_char_spec()


env_fat and env_remote have an implementation of env_get_char_spec()
function that is not different than the default.
Remove the duplicated code.

Signed-off-by: default avatarIgor Grinberg <grinberg@compulab.co.il>
parent 2d1d6583
No related branches found
No related tags found
No related merge requests found
...@@ -40,11 +40,6 @@ env_t *env_ptr; ...@@ -40,11 +40,6 @@ env_t *env_ptr;
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;
uchar env_get_char_spec(int index)
{
return *((uchar *)(gd->env_addr + index));
}
int env_init(void) int env_init(void)
{ {
/* use default */ /* use default */
......
...@@ -41,11 +41,6 @@ DECLARE_GLOBAL_DATA_PTR; ...@@ -41,11 +41,6 @@ DECLARE_GLOBAL_DATA_PTR;
#define CONFIG_ENV_OFFSET 0 #define CONFIG_ENV_OFFSET 0
#endif #endif
uchar env_get_char_spec(int index)
{
return *((uchar *)(gd->env_addr + index));
}
int env_init(void) int env_init(void)
{ {
if (crc32(0, env_ptr->data, ENV_SIZE) == env_ptr->crc) { if (crc32(0, env_ptr->data, ENV_SIZE) == env_ptr->crc) {
......
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