This Kconfig has wrongly been added to defconfig files. It is not the right place for it. It has never been the right place for it. Drivers that need it should select the symbol in their Kconfig entries. Drop PINCTL from Kconfig.defconfig and add proper select at Kconfig.gd32. Fixes #78619 Signed-off-by: Gerson Fernando Budke <nandojve@gmail.com>
13 lines
338 B
Text
13 lines
338 B
Text
# Copyright (c) 2021 ATL Electronics
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config USART_GD32
|
|
bool "GD32 serial driver"
|
|
default y
|
|
depends on DT_HAS_GD_GD32_USART_ENABLED
|
|
select PINCTRL
|
|
select SERIAL_HAS_DRIVER
|
|
select SERIAL_SUPPORT_INTERRUPT
|
|
select USE_GD32_USART
|
|
help
|
|
This option enables the USART driver for GD32 SoC family.
|