From: Wolfgang Denk Date: Tue, 9 Jun 2009 22:15:11 +0000 (+0200) Subject: rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared X-Git-Tag: v2009.06-rc3~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3a76ab5c166d5956885f803ce975e7151cc0ca0e;p=u-boot rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared Signed-off-by: Wolfgang Denk --- diff --git a/include/configs/rmu.h b/include/configs/rmu.h index d88ae81ffe..026826b86c 100644 --- a/include/configs/rmu.h +++ b/include/configs/rmu.h @@ -190,7 +190,8 @@ #define CONFIG_ENV_IS_IN_FLASH 1 #define CONFIG_ENV_ADDR ((TEXT_BASE) + 0x40000) -#define CONFIG_ENV_SIZE 0x40000 /* Total Size of Environment Sector */ +#define CONFIG_ENV_SECT_SIZE 0x40000 /* Total Size of Environment Sector */ +#define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE /* Used size for environment */ /* Address and size of Redundant Environment Sector */ #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)