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 <yassine.elaissaoui@nxp.com>
This commit is contained in:
Yassine El Aissaoui 2025-01-14 13:44:44 +01:00 committed by Benjamin Cabé
commit cc7489354b

View file

@ -140,11 +140,11 @@ static ALWAYS_INLINE void clock_init(void)
CLOCK_EnableClock(kCLOCK_PortC); 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); 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); CLOCK_EnableClock(kCLOCK_Lpuart1);
} }