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_nand.c | |
parent | d1459f0fab1ac145051a74094c96592c694f84af (diff) | |
download | u-boot-imx-994bc671cf8fd3f6d41bb680da738f814f4a9f38.zip u-boot-imx-994bc671cf8fd3f6d41bb680da738f814f4a9f38.tar.gz u-boot-imx-994bc671cf8fd3f6d41bb680da738f814f4a9f38.tar.bz2 |
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_nand.c')
-rw-r--r-- | common/env_nand.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/env_nand.c b/common/env_nand.c index 1b12c68..65a867d 100644 --- a/common/env_nand.c +++ b/common/env_nand.c @@ -59,8 +59,7 @@ char *env_name_spec = "NAND"; #if defined(ENV_IS_EMBEDDED) -extern uchar environment[]; -env_t *env_ptr = (env_t *)(&environment[0]); +env_t *env_ptr = &environment; #elif defined(CONFIG_NAND_ENV_DST) env_t *env_ptr = (env_t *)CONFIG_NAND_ENV_DST; #else /* ! ENV_IS_EMBEDDED */ |