diff options
author | Marek Vasut <marek.vasut@mailbox.org> | 2025-06-30 02:09:07 +0200 |
---|---|---|
committer | Patrice Chotard <patrice.chotard@foss.st.com> | 2025-07-29 17:02:31 +0200 |
commit | f91bb6d1df89b5652d7b8d68724e5fc557bb081d (patch) | |
tree | d240d194d267d635a2cc741745849e7ec03311d0 /drivers/reset/stm32/stm32-reset-mp25.c | |
parent | f6764328c6c5e62b972c3b4d6f5bf7cb00bdb856 (diff) |
reset: stm32: Fix header misuse
The stm32-reset-core.h is located in drivers/reset/stm32/ , it has to
be included using "stm32-reset-core.h" and not <stm32-reset-core.h> ,
otherwise the build fails. Fix it.
Fixes: 0994a627c278 ("reset: stm32mp25: add stm32mp25 reset driver")
Signed-off-by: Marek Vasut <marek.vasut@mailbox.org>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Diffstat (limited to 'drivers/reset/stm32/stm32-reset-mp25.c')
-rw-r--r-- | drivers/reset/stm32/stm32-reset-mp25.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/reset/stm32/stm32-reset-mp25.c b/drivers/reset/stm32/stm32-reset-mp25.c index 91c0336bc58..1cbe5c7f3d5 100644 --- a/drivers/reset/stm32/stm32-reset-mp25.c +++ b/drivers/reset/stm32/stm32-reset-mp25.c @@ -5,7 +5,7 @@ */ #include <dm.h> -#include <stm32-reset-core.h> +#include "stm32-reset-core.h" #include <stm32mp25_rcc.h> #include <dt-bindings/reset/st,stm32mp25-rcc.h> |