diff options
| author | Igor Grinberg <grinberg@compulab.co.il> | 2011-11-17 06:07:23 +0000 | 
|---|---|---|
| committer | Stefano Babic <sbabic@denx.de> | 2011-11-22 08:39:25 +0100 | 
| commit | 994bc671cf8fd3f6d41bb680da738f814f4a9f38 (patch) | |
| tree | 27a33cdeef18689c4adc5d4f532df3197de9b5fe /common/env_onenand.c | |
| parent | d1459f0fab1ac145051a74094c96592c694f84af (diff) | |
| download | olio-uboot-2014.01-994bc671cf8fd3f6d41bb680da738f814f4a9f38.tar.xz olio-uboot-2014.01-994bc671cf8fd3f6d41bb680da738f814f4a9f38.zip | |
env: move extern environment[] to environment.h
Extract all extern declarations for environment out of c files
into the environment.h header.
Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Diffstat (limited to 'common/env_onenand.c')
| -rw-r--r-- | common/env_onenand.c | 6 | 
1 files changed, 1 insertions, 5 deletions
| diff --git a/common/env_onenand.c b/common/env_onenand.c index b7170e6c4..618c642f2 100644 --- a/common/env_onenand.c +++ b/common/env_onenand.c @@ -44,10 +44,6 @@ char *env_name_spec = "OneNAND";  #define ONENAND_MAX_ENV_SIZE	4096  #define ONENAND_ENV_SIZE(mtd)	(ONENAND_MAX_ENV_SIZE - ENV_HEADER_SIZE) -#ifdef ENV_IS_EMBEDDED -extern uchar environment[]; -#endif /* ENV_IS_EMBEDDED */ -  DECLARE_GLOBAL_DATA_PTR;  uchar env_get_char_spec(int index) @@ -64,7 +60,7 @@ void env_relocate_spec(void)  	int rc;  	size_t retlen;  #ifdef ENV_IS_EMBEDDED -	char *buf = (char *)&environment[0]; +	char *buf = (char *)&environment;  #else  	loff_t env_addr = CONFIG_ENV_ADDR;  	char onenand_env[ONENAND_MAX_ENV_SIZE]; |