mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 03:35:19 +00:00
NOCACHE_MEMORY depends on ARCH_HAS_NOCACHE_MEMORY_SUPPORT, so don't try to select the symbol if not supported. Signed-off-by: Manuel Argüelles <manuel.arguelles@nxp.com>
11 lines
273 B
Plaintext
11 lines
273 B
Plaintext
# Copyright 2022 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config GPIO_NXP_S32
|
|
bool "NXP S32 GPIO driver"
|
|
default y
|
|
depends on DT_HAS_NXP_S32_GPIO_ENABLED
|
|
select NOCACHE_MEMORY if ARCH_HAS_NOCACHE_MEMORY_SUPPORT
|
|
help
|
|
Enable the GPIO driver for NXP S32 processors.
|