From 999b19d6ceaee29902434bda9c160486a3eb75bc Mon Sep 17 00:00:00 2001 From: Ofir Shemesh Date: Wed, 30 Apr 2025 20:02:11 +0300 Subject: [PATCH] soc: nxp: imxrt: fix incorrect flexram partition function call Replace incorrect call to memc_flexram_dt_partition() with flexram_dt_partition() to resolve build error on IMXRT10xx and IMXRT11xx. Signed-off-by: Ofir Shemesh --- soc/nxp/imxrt/imxrt10xx/soc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/nxp/imxrt/imxrt10xx/soc.c b/soc/nxp/imxrt/imxrt10xx/soc.c index ea870c84ed0..852dcf60628 100644 --- a/soc/nxp/imxrt/imxrt10xx/soc.c +++ b/soc/nxp/imxrt/imxrt10xx/soc.c @@ -367,7 +367,7 @@ void soc_reset_hook(void) #if defined(FLEXRAM_RUNTIME_BANKS_USED) /* Configure flexram if not running from RAM */ - memc_flexram_dt_partition(); + flexram_dt_partition(); #endif } #endif