diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-09-27 20:23:09 +0200 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-10-01 00:33:34 +0200 |
commit | 861ff277575fb00c8b8d22c3baab726c353a8fea (patch) | |
tree | 5dd3d64f81ef8d0e5bde4ee4ca97c3031d2d00ed /include/configs/evb_rk3399.h | |
parent | 4a18729726144678c090ad0e3c26f4829b1c4aeb (diff) | |
download | u-boot-861ff277575fb00c8b8d22c3baab726c353a8fea.tar.gz u-boot-861ff277575fb00c8b8d22c3baab726c353a8fea.tar.bz2 u-boot-861ff277575fb00c8b8d22c3baab726c353a8fea.zip |
evb-rk3399: avoid redefinition of CONFIG_ENV_OFFSET
CONFIG_ENV_OFFSET is already defined in
include/configs/rockchip-common.h
For CONFIG_ROCKCHIP_BACK_TO_BROM=y we redefine CONFIG_ENV_OFFSET
to an unsuitable value. We were lucky to get a compiler warning.
Remove the incorrect redefinition.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'include/configs/evb_rk3399.h')
-rw-r--r-- | include/configs/evb_rk3399.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/configs/evb_rk3399.h b/include/configs/evb_rk3399.h index 015f25a774..66ead6c117 100644 --- a/include/configs/evb_rk3399.h +++ b/include/configs/evb_rk3399.h @@ -10,12 +10,6 @@ #include <configs/rk3399_common.h> #define CONFIG_SYS_MMC_ENV_DEV 1 -/* - * SPL @ 32k for ~36k - * ENV @ 96k - * u-boot @ 128K - */ -#define CONFIG_ENV_OFFSET (96 * 1024) #define SDRAM_BANK_SIZE (2UL << 30) |