File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
#include <zephyr/toolchain.h>
8
8
9
9
#include <cmsis_core.h>
10
- #if CONFIG_CPU_HAS_NXP_MPU
10
+ #if CONFIG_CPU_HAS_NXP_SYSMPU
11
11
#include <fsl_sysmpu.h>
12
12
#endif
13
13
@@ -38,7 +38,7 @@ __weak void z_arm_clear_arm_mpu_config(void)
38
38
ARM_MPU_ClrRegion (i );
39
39
}
40
40
}
41
- #elif CONFIG_CPU_HAS_NXP_MPU
41
+ #elif CONFIG_CPU_HAS_NXP_SYSMPU
42
42
__weak void z_arm_clear_arm_mpu_config (void )
43
43
{
44
44
int i ;
Original file line number Diff line number Diff line change 13
13
*/
14
14
void cleanup_arm_nvic (void );
15
15
16
- #if defined(CONFIG_CPU_HAS_ARM_MPU ) || defined(CONFIG_CPU_HAS_NXP_MPU )
16
+ #if defined(CONFIG_CPU_HAS_ARM_MPU ) || defined(CONFIG_CPU_HAS_NXP_SYSMPU )
17
17
/**
18
18
* Cleanup all ARM MPU region configuration
19
19
*/
Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ static void do_boot(struct boot_rsp *rsp)
192
192
sys_cache_data_disable ();
193
193
#endif
194
194
195
- #if CONFIG_CPU_HAS_ARM_MPU || CONFIG_CPU_HAS_NXP_MPU
195
+ #if CONFIG_CPU_HAS_ARM_MPU || CONFIG_CPU_HAS_NXP_SYSMPU
196
196
z_arm_clear_arm_mpu_config ();
197
197
#endif
198
198
You can’t perform that action at this time.
0 commit comments