zephyr/boards/arc/hsdk/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

41 lines
453 B
Plaintext

# Copyright (c) 2019 Synopsys, Inc. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
if BOARD_HSDK
config BOARD
default "hsdk"
if GPIO
config GPIO_DW
default y
config GPIO_DW_0
default y
depends on GPIO_DW
endif # GPIO
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
config SPI_DW_ACCESS_WORD_ONLY
default y
endif # SPI_DW
endif # SPI
endif # BOARD_HSDK