env: clean env_mgdisk.c checkpatch and code style

Cleanup the env_mgdisk.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:01 +00:00 committed by Stefano Babic
parent dcfe6e6fa1
commit 6b15566681

View File

@ -29,13 +29,13 @@
char *env_name_spec = "MG_DISK";
env_t *env_ptr = 0;
env_t *env_ptr;
DECLARE_GLOBAL_DATA_PTR;
uchar env_get_char_spec(int index)
{
return (*((uchar *)(gd->env_addr + index)));
return *((uchar *)(gd->env_addr + index));
}
void env_relocate_spec(void)