diff options
author | Adam Ford <aford173@gmail.com> | 2017-07-26 22:25:29 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-12 19:17:20 -0400 |
commit | a41e3e1480a189104ab0bbfda70c4eb5bc2c59e1 (patch) | |
tree | 106926b0f7804c2470f61a423af1777731bb355c /drivers/spi/Kconfig | |
parent | b730ff3fd65c8d1c33f1c05ca3fbab579a86abb4 (diff) | |
download | u-boot-a41e3e1480a189104ab0bbfda70c4eb5bc2c59e1.tar.gz |
OMAP3_SPI: Kconfig: move OMAP3_SPI out of DM_SPI section.
The OMAP3_SPI driver can work with or without DM_SPI. Moving this
outside of the #if DM_SPI section allows us to include it on boards
that don't support DM_SPI yet.
Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'drivers/spi/Kconfig')
-rw-r--r-- | drivers/spi/Kconfig | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index 8a8e8e480f..3c5582a950 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -188,13 +188,6 @@ config ZYNQ_QSPI Zynq QSPI IP core. This IP is used to connect the flash in 4-bit qspi, 8-bit dual stacked and shared 4-bit dual parallel. -config OMAP3_SPI - bool "McSPI driver for OMAP" - help - SPI master controller for OMAP24XX and later Multichannel SPI - (McSPI). This driver be used to access SPI chips on platforms - embedding this OMAP3 McSPI IP core. - endif # if DM_SPI config SOFT_SPI @@ -229,4 +222,11 @@ config MPC8XX_SPI help Enable support for SPI on MPC8XX +config OMAP3_SPI + bool "McSPI driver for OMAP" + help + SPI master controller for OMAP24XX and later Multichannel SPI + (McSPI). This driver be used to access SPI chips on platforms + embedding this OMAP3 McSPI IP core. + endmenu # menu "SPI Support" |