From: Patrice Chotard Date: Tue, 28 Apr 2026 16:10:59 +0000 (+0200) Subject: reset: stm32: Fix compilation error X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=612256838acec75407b1a268459c3a9dbb63c7f9;p=thirdparty%2Fu-boot.git reset: stm32: Fix compilation error The following compilation error occurs when environment variable KBUILD_OUTPUT is not set : drivers/reset/stm32/stm32-reset-mp21.c:8:10: fatal error: stm32-reset-core.h: No such file or directory 8 | #include | ^~~~~~~~~~~~~~~~~~~~ As stm32-reset-core.h is located in same directory than stm32-reset-mp21.c, we should use #include "stm32-reset-core.h". Signed-off-by: Patrice Chotard Reviewed-by: Raphaƫl Gallais-Pou --- diff --git a/drivers/reset/stm32/stm32-reset-mp21.c b/drivers/reset/stm32/stm32-reset-mp21.c index 7d169d7582f..0e92b0f5d5d 100644 --- a/drivers/reset/stm32/stm32-reset-mp21.c +++ b/drivers/reset/stm32/stm32-reset-mp21.c @@ -5,7 +5,7 @@ */ #include -#include +#include "stm32-reset-core.h" #include #include