From b80f7256a0995333ddcc82da7e99a39b01b2296f 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/boards/nrf/nrfx/Kconfig b/samples/boards/nrf/nrfx/Kconfig index a46af347ba932e3..67d02ef981bfc3a 100644 --- a/samples/boards/nrf/nrfx/Kconfig +++ b/samples/boards/nrf/nrfx/Kconfig @@ -1,6 +1,8 @@ # 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)) @@ -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"