diff options
author | Marek Vasut <marex@denx.de> | 2015-07-21 16:17:39 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-08-08 14:14:09 +0200 |
commit | cbc9544d275c3964db0bd7b7e510be9172b43cb8 (patch) | |
tree | 4bb2d9060e8922332d4696cf5cac702e760d76bd /include | |
parent | 251faa2046c7680edebeb0114fb0a38b843cb7fd (diff) | |
download | u-boot-imx-cbc9544d275c3964db0bd7b7e510be9172b43cb8.zip u-boot-imx-cbc9544d275c3964db0bd7b7e510be9172b43cb8.tar.gz u-boot-imx-cbc9544d275c3964db0bd7b7e510be9172b43cb8.tar.bz2 |
arm: socfpga: config: Exclude CONFIG_SPI_FLASH_MTD from SPL build
We do not need full MTD support in the SPL build, it only adds size
and is not usable in any way. Exclude it.
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/socfpga_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/socfpga_common.h b/include/configs/socfpga_common.h index b5d69d7..24f2ec0 100644 --- a/include/configs/socfpga_common.h +++ b/include/configs/socfpga_common.h @@ -197,7 +197,9 @@ unsigned int cm_get_l4_sp_clk_hz(void); /* Enable multiple SPI NOR flash manufacturers */ #define CONFIG_SPI_FLASH_STMICRO /* Micron/Numonyx flash */ #define CONFIG_SPI_FLASH_SPANSION /* Spansion flash */ +#ifndef CONFIG_SPL_BUILD #define CONFIG_SPI_FLASH_MTD +#endif /* QSPI reference clock */ #ifndef __ASSEMBLY__ unsigned int cm_get_qspi_controller_clk_hz(void); |