From 88c7a443f9229d76ade5223e1fca868f2dd70e9c Mon Sep 17 00:00:00 2001 From: Gediminas Sidlauskas Date: Fri, 31 Jan 2025 08:58:08 +0200 Subject: [PATCH] soc: nxp: imxrt: fixed relocated file name Added .c ending to lpm_rt1064 file name. Signed-off-by: Gediminas Sidlauskas --- soc/nxp/imxrt/imxrt10xx/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/nxp/imxrt/imxrt10xx/CMakeLists.txt b/soc/nxp/imxrt/imxrt10xx/CMakeLists.txt index 0689025c9fc..77421318acc 100644 --- a/soc/nxp/imxrt/imxrt10xx/CMakeLists.txt +++ b/soc/nxp/imxrt/imxrt10xx/CMakeLists.txt @@ -11,7 +11,7 @@ if(CONFIG_PM) zephyr_code_relocate(FILES power.c LOCATION ITCM_TEXT) if(CONFIG_SOC_MIMXRT1064) zephyr_sources(lpm_rt1064.c) - zephyr_code_relocate(FILES lpm_rt1064 LOCATION ITCM_TEXT) + zephyr_code_relocate(FILES lpm_rt1064.c LOCATION ITCM_TEXT) endif() endif()