We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4f9cc9 commit d47b473Copy full SHA for d47b473
modules/hal_nxp/mcux/mcux-sdk-ng/device/device.cmake
@@ -43,12 +43,14 @@ if(NOT CONFIG_CLOCK_CONTROL_ARM_SCMI)
43
endif()
44
45
# Exclude fsl_power.c for DSP domains
46
-if(CONFIG_ARM)
+if((CONFIG_ARM) AND (NOT CONFIG_CLOCK_CONTROL_ARM_SCMI))
47
set(CONFIG_MCUX_COMPONENT_driver.power ON)
48
49
50
-set(CONFIG_MCUX_COMPONENT_driver.reset ON)
51
-set(CONFIG_MCUX_COMPONENT_driver.memory ON)
+if(NOT CONFIG_CPU_CORTEX_A)
+ set(CONFIG_MCUX_COMPONENT_driver.reset ON)
52
+ set(CONFIG_MCUX_COMPONENT_driver.memory ON)
53
+endif()
54
55
# Include fsl_dsp.c for ARM domains (applicable to i.MX RTxxx devices)
56
if(CONFIG_ARM)
0 commit comments