arm: aarch32: mpu: Fix build issue with assert
The assert log of z_priv_stacks_ram_start failed to build due to passing &z_priv_stacks_ram_start instead of just z_priv_stacks_ram_start. Fixes #39190 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
874004050b
commit
a6355cb475
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ void z_arm_configure_dynamic_mpu_regions(struct k_thread *thread)
|
|||
|
||||
__ASSERT((uintptr_t)&z_priv_stacks_ram_start <= guard_start,
|
||||
"Guard start: (0x%lx) below privilege stacks boundary: (%p)",
|
||||
guard_start, &z_priv_stacks_ram_start);
|
||||
guard_start, z_priv_stacks_ram_start);
|
||||
} else
|
||||
#endif /* CONFIG_USERSPACE */
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue