zephyr/boards/arc/em_starterkit/Kconfig.defconfig
Kumar Gala b9ed2d33fd drivers: spi: Remove unused Kconfig symbols
Remove SPI_[0-8] and SPI_[0-8]_OP_MODES Kconfig symbols as no driver
uses them anymore.  We also cleanup board and sample code to remove
use of these symbols.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2021-03-09 04:53:46 -05:00

67 lines
641 B
Plaintext

# SPDX-License-Identifier: Apache-2.0
if BOARD_EM_STARTERKIT
config BOARD
default "em_starterkit"
if GPIO
config GPIO_DW
default y
if GPIO_DW
config GPIO_DW_0
default y
config GPIO_DW_1
default y
config GPIO_DW_2
default y
config GPIO_DW_3
default y
endif # GPIO_DW
endif # GPIO
if I2C
config I2C_DW
default y
if I2C_DW
config I2C_DW_CLOCK_SPEED
default 100
endif # I2C_DW
endif # I2C
config UART_NS16550
default y
depends on SERIAL
if SPI
config SPI_DW
default y
if SPI_DW
config SPI_DW_FIFO_DEPTH
default 32
config SPI_DW_ARC_AUX_REGS
default n
endif # SPI_DW
endif # SPI
endif # BOARD_EM_STARTERKIT