diff options
author | Luca Ceresoli <luca.ceresoli@comelit.it> | 2011-04-20 11:02:05 -0400 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-04-27 19:38:10 +0200 |
commit | 6cbec7b3bafc9f63cead2cc264505bcca36a074a (patch) | |
tree | bc16f055b65df98a077c93d96bcb9f392feed513 /include/configs/devkit8000.h | |
parent | f4ef66685a6cdca6e5b3a8b2f199789f5d94320a (diff) | |
download | u-boot-6cbec7b3bafc9f63cead2cc264505bcca36a074a.tar.gz |
ARMV7: OMAP3: Cleanup extern variables in mem.c
Removed boot_flash_* extern variables.
boot_flash_type was totally unused. The other ones were actually constants, so
they have been replaced with #defines in the board config files.
Signed-off-by: Luca Ceresoli <luca.ceresoli@comelit.it>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Albert Aribaud <albert.aribaud@free.fr>
Cc: Sandeep Paulraj <s-paulraj@ti.com>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'include/configs/devkit8000.h')
-rw-r--r-- | include/configs/devkit8000.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/include/configs/devkit8000.h b/include/configs/devkit8000.h index d898b777a7..4ba3d91e61 100644 --- a/include/configs/devkit8000.h +++ b/include/configs/devkit8000.h @@ -297,15 +297,7 @@ #define CONFIG_ENV_IS_IN_NAND 1 #define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */ -#define CONFIG_ENV_OFFSET boot_flash_off - -#ifndef __ASSEMBLY__ -extern unsigned int boot_flash_base; -extern volatile unsigned int boot_flash_env_addr; -extern unsigned int boot_flash_off; -extern unsigned int boot_flash_sec; -extern unsigned int boot_flash_type; -#endif +#define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800 |