From cc7489354bc4032c9bb402b19e0847b47904935c Mon Sep 17 00:00:00 2001 From: Yassine El Aissaoui Date: Tue, 14 Jan 2025 13:44:44 +0100 Subject: [PATCH] soc: nxp: mcxw: Update soc.c due to nxp,kinetis_lpuart rename nxp,kinetis_lpuart was recently renamed to nxp,lpuart without updating mcxw soc file. Signed-off-by: Yassine El Aissaoui --- soc/nxp/mcx/mcxw/soc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soc/nxp/mcx/mcxw/soc.c b/soc/nxp/mcx/mcxw/soc.c index 32fc449f182..9dcbd56518c 100644 --- a/soc/nxp/mcx/mcxw/soc.c +++ b/soc/nxp/mcx/mcxw/soc.c @@ -140,11 +140,11 @@ static ALWAYS_INLINE void clock_init(void) CLOCK_EnableClock(kCLOCK_PortC); } - if (DT_NODE_HAS_COMPAT_STATUS(DT_NODELABEL(lpuart0), nxp_kinetis_lpuart, okay)) { + if (DT_NODE_HAS_COMPAT_STATUS(DT_NODELABEL(lpuart0), nxp_lpuart, okay)) { CLOCK_EnableClock(kCLOCK_Lpuart0); } - if (DT_NODE_HAS_COMPAT_STATUS(DT_NODELABEL(lpuart1), nxp_kinetis_lpuart, okay)) { + if (DT_NODE_HAS_COMPAT_STATUS(DT_NODELABEL(lpuart1), nxp_lpuart, okay)) { CLOCK_EnableClock(kCLOCK_Lpuart1); }