From cea2487d3d4979055d30be4aaa03584db76f6553 Mon Sep 17 00:00:00 2001 From: Arnaud Pouliquen Date: Fri, 11 Apr 2025 17:32:03 +0200 Subject: [PATCH] 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 --- soc/st/stm32/stm32mp13x/soc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/soc/st/stm32/stm32mp13x/soc.c b/soc/st/stm32/stm32mp13x/soc.c index 7d079026373..96874d8c483 100644 --- a/soc/st/stm32/stm32mp13x/soc.c +++ b/soc/st/stm32/stm32mp13x/soc.c @@ -9,6 +9,7 @@ * @brief System/hardware module for STM32MP13 processor */ +#include #include #include #include