Skip to content

Commit cea2487

Browse files
arnopokartben
authored andcommitted
soc: st: stm32mp13: add missing arm_mmu.h include
The samples/subsys/llext/shell_loader test fails when running as a twister test on the stm32mp135f_dk/stm32mp135fxx platform, with the following error: soc/st/stm32/stm32mp13x/soc.c:46:36: error: array type has incomplete element type 'struct arm_mmu_region' 46 | static const struct arm_mmu_region mmu_regions[] = { This commit adds the missing arm_mmu.h include to fix the build issue. Signed-off-by: Arnaud Pouliquen <[email protected]>
1 parent 9dec55e commit cea2487

File tree

1 file changed

+1
-0
lines changed
  • soc/st/stm32/stm32mp13x

1 file changed

+1
-0
lines changed

soc/st/stm32/stm32mp13x/soc.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* @brief System/hardware module for STM32MP13 processor
1010
*/
1111

12+
#include <zephyr/arch/arm/mmu/arm_mmu.h>
1213
#include <zephyr/device.h>
1314
#include <zephyr/init.h>
1415
#include <zephyr/kernel.h>

0 commit comments

Comments
 (0)