The Drivers using Pinctrl should be turning Pinctrl on this should not be the responsibility of the board. This commit removes CONFIG_PINCTRL from the boards side for nxp boards. Signed-off-by: Emilio Benavente <emilio.benavente@nxp.com>
21 lines
451 B
Text
21 lines
451 B
Text
# Copyright 2022 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config NXP_S32_SPI
|
|
bool "NXP S32 SPI driver"
|
|
default y
|
|
depends on DT_HAS_NXP_S32_SPI_ENABLED
|
|
select PINCTRL
|
|
select NOCACHE_MEMORY if ARCH_HAS_NOCACHE_MEMORY_SUPPORT
|
|
help
|
|
Enable support for NXP S32 SPI driver.
|
|
|
|
if NXP_S32_SPI
|
|
|
|
config NXP_S32_SPI_INTERRUPT
|
|
bool "NXP S32 SPI Interrupt Support"
|
|
default y
|
|
help
|
|
Enable Interrupt support for SPI communication.
|
|
|
|
endif # NXP_S32_SPI
|