From 8263bcdd11bcb5c20e509f6d42c1d8a83f1e4a63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Chru=C5=9Bci=C5=84ski?= Date: Mon, 8 Jul 2024 15:22:33 +0200 Subject: [PATCH] samples: boards: nrf: nrfx: Fix (D)PPI dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move Kconfig.zephyr above local kconfigs. Signed-off-by: Krzysztof Chruściński --- samples/boards/nrf/nrfx/Kconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/boards/nrf/nrfx/Kconfig b/samples/boards/nrf/nrfx/Kconfig index a46af347ba932e3..af19feb9bfe3f8b 100644 --- a/samples/boards/nrf/nrfx/Kconfig +++ b/samples/boards/nrf/nrfx/Kconfig @@ -1,11 +1,13 @@ # Copyright (c) 2021 Nordic Semiconductor ASA # SPDX-License-Identifier: Apache-2.0 +source "Kconfig.zephyr" + config NRFX_DPPI - default $(dt_has_compat,$(DT_COMPAT_NORDIC_NRF_DPPIC)) + default HAS_HW_NRF_DPPIC config NRFX_PPI - default $(dt_has_compat,$(DT_COMPAT_NORDIC_NRF_PPI)) + default HAS_HW_NRF_PPI config NRFX_GPIOTE0 default y if SOC_SERIES_NRF51X || \ @@ -16,5 +18,3 @@ config NRFX_GPIOTE0 config NRFX_GPIOTE1 default y if (SOC_SERIES_NRF53X && TRUSTED_EXECUTION_NONSECURE) || \ (SOC_SERIES_NRF91X && TRUSTED_EXECUTION_NONSECURE) - -source "Kconfig.zephyr"