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>
14 lines
223 B
Text
14 lines
223 B
Text
# Copyright (c) 2021, ATL Electronics
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_FAMILY_GD_GD32
|
|
|
|
rsource "*/Kconfig.defconfig.series"
|
|
|
|
config RESET
|
|
default y
|
|
|
|
config CLOCK_CONTROL
|
|
default y
|
|
|
|
endif # SOC_FAMILY_GD_GD32
|