Skip to content

Commit 9dec55e

Browse files
arnopokartben
authored andcommitted
arch: arm: mmu: add missing includes
The samples/subsys/llext/shell_loader test fails when running as a twister test on the stm32mp135f_dk/stm32mp135fxx platform, with the following error: zephyr/include/zephyr/arch/arm/mmu/arm_mmu.h:112:9: error: unknown type name 'uintptr_t' This commit adds the necessary includes to define the missing types. Signed-off-by: Arnaud Pouliquen <[email protected]>
1 parent ee55bdc commit 9dec55e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

include/zephyr/arch/arm/mmu/arm_mmu.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
#ifndef _ASMLANGUAGE
1212

13+
#include <stdint.h>
14+
#include <stdlib.h>
15+
1316
/*
1417
* Comp.:
1518
* ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition,

0 commit comments

Comments
 (0)