From 9060f3180b63e5aec289d16c671f4c711a1e7b89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Stasiak?= Date: Fri, 5 Sep 2025 08:15:26 +0200 Subject: [PATCH] [nrf fromlist] tests: drivers: clock_control_api: fix Kconfig logic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Kconfig was using symbol with redundant CONFIG prefix. Upstream PR #: 95496 Signed-off-by: MichaƂ Stasiak --- tests/drivers/clock_control/clock_control_api/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/drivers/clock_control/clock_control_api/Kconfig b/tests/drivers/clock_control/clock_control_api/Kconfig index dc1e976d824..9315f3e337b 100644 --- a/tests/drivers/clock_control/clock_control_api/Kconfig +++ b/tests/drivers/clock_control/clock_control_api/Kconfig @@ -3,7 +3,7 @@ config TEST_NRF_HF_STARTUP_TIME_US int "Delay required for HF clock startup." - default 3000 if CONFIG_SOC_SERIES_NRF91X + default 3000 if SOC_SERIES_NRF91X default 500 depends on SOC_FAMILY_NORDIC_NRF help