mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-06 16:46:52 +00:00
As part of the transition to Device Tree, a temporary HAS_DTS configuration variable, and a .fixup file per board with symbol aliases were added. This patch removes the cc32xx related fixup file definitions, except for those used additionally outside the cc32xx drivers. Since cc32xx has DTS files, and since HAS_DTS will always be true, it also removes the 'if !HAS_DTS' blocks from the cc32xx Kconfig files. Change-Id: I1c1b9f734795f523342f82ab32f2a38983812c0b Signed-off-by: Gil Pitney <gil.pitney@linaro.org> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
16 lines
372 B
Plaintext
16 lines
372 B
Plaintext
menuconfig UART_CC32XX
|
|
depends on SOC_SERIES_CC32XX
|
|
bool "CC32XX UART driver"
|
|
default n
|
|
select SERIAL_HAS_DRIVER
|
|
depends on SOC_FAMILY_TISIMPLELINK
|
|
help
|
|
This option enables the CC32XX UART driver, for UART_0.
|
|
|
|
config UART_CC32XX_NAME
|
|
string "Device Name for CC32XX UART"
|
|
default "UART_0"
|
|
depends on UART_CC32XX
|
|
help
|
|
This is the UART's device name binding.
|