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-core.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-core.c')
-rw-r--r-- | drivers/reset/stm32/stm32-reset-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/reset/stm32/stm32-reset-core.c b/drivers/reset/stm32/stm32-reset-core.c index 7dd92e07e1a..9eeed6536e0 100644 --- a/drivers/reset/stm32/stm32-reset-core.c +++ b/drivers/reset/stm32/stm32-reset-core.c @@ -6,7 +6,7 @@ #include <dm.h> #include <reset-uclass.h> -#include <stm32-reset-core.h> +#include "stm32-reset-core.h" #include <stm32_rcc.h> #include <dm/device_compat.h> #include <linux/iopoll.h> |