diff options
author | Vignesh R <vigneshr@ti.com> | 2016-11-22 14:42:56 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-12-04 13:55:04 -0500 |
commit | d50dbc826c0969923fa5a43b6e8c3c5eec40e739 (patch) | |
tree | 8f3ecda1f8d6e30cf9419aa28aad059a35eafa52 | |
parent | 44402fe709f5a116083934e07d97b4c77ba52ec1 (diff) | |
download | u-boot-d50dbc826c0969923fa5a43b6e8c3c5eec40e739.tar.gz |
defconfig: am43xx_evm: Enable DM_SPI and DM_SPI_FLASH
Commit 4c4e3b37750f3("ARM: AM43xx: Enable FIT") accidentally disabled
DM_SPI and DM_SPI_FLASH. Add back DM_SPI and DM_SPI_FLASH to
am43xx_evm_defconfig in order to make use of DM framework for QSPI.
Signed-off-by: Vignesh R <vigneshr@ti.com>
Acked-by: Lokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: Mugunthan V N <mugunthanvnm@ti.com>
-rw-r--r-- | configs/am43xx_evm_defconfig | 2 | ||||
-rw-r--r-- | configs/am43xx_hs_evm_defconfig | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/configs/am43xx_evm_defconfig b/configs/am43xx_evm_defconfig index 443e1fb6bf..e596106e13 100644 --- a/configs/am43xx_evm_defconfig +++ b/configs/am43xx_evm_defconfig @@ -51,6 +51,8 @@ CONFIG_SPI_FLASH_MACRONIX=y CONFIG_DM_ETH=y CONFIG_DM_SERIAL=y CONFIG_SYS_NS16550=y +CONFIG_DM_SPI=y +CONFIG_DM_SPI_FLASH=y CONFIG_TI_QSPI=y CONFIG_TIMER=y CONFIG_OMAP_TIMER=y diff --git a/configs/am43xx_hs_evm_defconfig b/configs/am43xx_hs_evm_defconfig index 7d791fe762..a605d0ae4f 100644 --- a/configs/am43xx_hs_evm_defconfig +++ b/configs/am43xx_hs_evm_defconfig @@ -52,6 +52,8 @@ CONFIG_SPI_FLASH_MACRONIX=y CONFIG_DM_ETH=y CONFIG_DM_SERIAL=y CONFIG_SYS_NS16550=y +CONFIG_DM_SPI=y +CONFIG_DM_SPI_FLASH=y CONFIG_TI_QSPI=y CONFIG_TIMER=y CONFIG_OMAP_TIMER=y |