From 8514497ad1cb489ff440a183bf1172ed3abef543 Mon Sep 17 00:00:00 2001 From: Bjarki Arge Andreasen Date: Mon, 26 Aug 2024 16:55:36 +0200 Subject: [PATCH] drivers: mpsl: Add !SOC_SERIES_NRF54HX dep to CLOCK_CONTROL_MPSL The MPSL clock control driver does not support the SOC_SERIES_NRF54HX which uses the new nrf2 clock control API, which is selected by default if CLOCK_CONTROL is selected on the SOC level. Signed-off-by: Bjarki Arge Andreasen --- drivers/mpsl/clock_control/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mpsl/clock_control/Kconfig b/drivers/mpsl/clock_control/Kconfig index fa3c4e1e3cbf..099c191e3ed3 100644 --- a/drivers/mpsl/clock_control/Kconfig +++ b/drivers/mpsl/clock_control/Kconfig @@ -8,5 +8,6 @@ config CLOCK_CONTROL_MPSL bool depends on MPSL depends on CLOCK_CONTROL + depends on !SOC_SERIES_NRF54HX default y select CLOCK_CONTROL_NRF_FORCE_ALT