The `Kconfig.defconfig` is not good place for put `select PINCTRL`. Drop `select PINCTL` from `Kconfig.defconfig` and add it at each driver's Kconfig. Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
10 lines
278 B
Text
10 lines
278 B
Text
# Copyright (c) 2022 TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config ADC_RPI_PICO
|
|
bool "Raspberry Pi Pico ADC driver"
|
|
default y
|
|
depends on DT_HAS_RASPBERRYPI_PICO_ADC_ENABLED
|
|
select PICOSDK_USE_ADC
|
|
select PINCTRL
|
|
depends on RESET
|