env: clean env_common.c checkpatch and code style

Cleanup the env_common.c checkpatch warnings, errors and coding style.

Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
This commit is contained in:
Igor Grinberg 2011-11-07 01:14:11 +00:00 committed by Stefano Babic
parent de152b9bf8
commit 27aafe988e
2 changed files with 26 additions and 34 deletions

View File

@ -34,13 +34,6 @@
DECLARE_GLOBAL_DATA_PTR;
extern env_t *env_ptr;
extern void env_relocate_spec (void);
extern uchar env_get_char_spec(int);
static uchar env_get_char_init (int index);
/************************************************************************
* Default settings to be used when no valid environment is found
*/
@ -133,15 +126,11 @@ struct hsearch_data env_htab;
static uchar env_get_char_init(int index)
{
uchar c;
/* if crc was bad, use the default environment */
if (gd->env_valid)
c = env_get_char_spec(index);
return env_get_char_spec(index);
else
c = default_environment[index];
return (c);
return default_environment[index];
}
uchar env_get_char_memory(int index)
@ -151,15 +140,11 @@ uchar env_get_char_memory (int index)
uchar env_get_char(int index)
{
uchar c;
/* if relocated to RAM */
if (gd->flags & GD_FLG_RELOC)
c = env_get_char_memory(index);
return env_get_char_memory(index);
else
c = env_get_char_init(index);
return (c);
return env_get_char_init(index);
}
const uchar *env_get_addr(int index)
@ -190,9 +175,9 @@ void set_default_env(const char *s)
}
if (himport_r(&env_htab, (char *)default_environment,
sizeof(default_environment), '\0', 0) == 0) {
sizeof(default_environment), '\0', 0) == 0)
error("Environment import failed: errno = %d\n", errno);
}
gd->flags |= GD_FLG_ENV_READY;
}
@ -230,8 +215,6 @@ int env_import(const char *buf, int check)
void env_relocate(void)
{
#if defined(CONFIG_NEEDS_MANUAL_RELOC)
extern void env_reloc(void);
env_reloc();
#endif
if (gd->env_valid == 0) {
@ -272,6 +255,7 @@ int env_complete(char *var, int maxv, char *cmdv[], int bufsz, char *buf)
if (idx)
cmdv[found++] = "...";
cmdv[found] = NULL;
return found;
}

View File

@ -162,6 +162,14 @@ extern env_t environment;
#endif /* ENV_IS_EMBEDDED */
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);
#endif
#ifndef DO_DEPS_ONLY