diff options
author | Tom Rini <trini@ti.com> | 2013-07-18 15:12:58 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-07-30 09:21:41 -0400 |
commit | 989bd7a8cb443cf2fe607ec69b4da61f3040a0bb (patch) | |
tree | 7f8d61e96727e318f703ca3c2d2ab3f6c4af8f2e | |
parent | 97559b5203e01b033e01aac2d5c0858b2bdaa7aa (diff) | |
download | u-boot-imx-989bd7a8cb443cf2fe607ec69b4da61f3040a0bb.zip u-boot-imx-989bd7a8cb443cf2fe607ec69b4da61f3040a0bb.tar.gz u-boot-imx-989bd7a8cb443cf2fe607ec69b4da61f3040a0bb.tar.bz2 |
am335x_evm: Drop useless CONFIG_ENV_IS_NOWHERE
We always set a CONFIG_ENV_IS_...somewhere... so drop the initial define
of NOWHERE.
Reviewed-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Tom Rini <trini@ti.com>
-rw-r--r-- | include/configs/am335x_evm.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index 0f12c75..ea8669a 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -306,8 +306,6 @@ #define CONFIG_ENV_OVERWRITE 1 #define CONFIG_SYS_CONSOLE_INFO_QUIET -#define CONFIG_ENV_IS_NOWHERE - /* Defines for SPL */ #define CONFIG_SPL #define CONFIG_SPL_FRAMEWORK @@ -467,7 +465,6 @@ * 0x442000 - 0x800000 : Userland */ #if defined(CONFIG_SPI_BOOT) -# undef CONFIG_ENV_IS_NOWHERE # define CONFIG_ENV_IS_IN_SPI_FLASH # define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED # define CONFIG_ENV_OFFSET (892 << 10) /* 892 KiB in */ @@ -515,7 +512,6 @@ #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND devices */ #if !defined(CONFIG_SPI_BOOT) -#undef CONFIG_ENV_IS_NOWHERE #define CONFIG_ENV_IS_IN_NAND #define CONFIG_ENV_OFFSET 0x260000 /* environment starts here */ #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ |