From 15ca2c5e14abe415e70d08fb595973dd3e3b0af9 Mon Sep 17 00:00:00 2001 From: Yann Gautier Date: Wed, 19 Jan 2022 14:15:48 +0100 Subject: [PATCH] fix(st-ddr): add missing debug.h In a later patch, the stm32mp1_def.h will be reworked. The inclusion of common/debug.h may not be done there through another included file. Add this header inclusion in the files that need it. Change-Id: I83687f7910032ca38c0856796580a650e1e41a68 Signed-off-by: Yann Gautier --- drivers/st/ddr/stm32mp_ddr.c | 1 + drivers/st/ddr/stm32mp_ddr_test.c | 1 + drivers/st/ddr/stm32mp_ram.c | 1 + 3 files changed, 3 insertions(+) diff --git a/drivers/st/ddr/stm32mp_ddr.c b/drivers/st/ddr/stm32mp_ddr.c index ffc85ea3e..6776e3ba8 100644 --- a/drivers/st/ddr/stm32mp_ddr.c +++ b/drivers/st/ddr/stm32mp_ddr.c @@ -4,6 +4,7 @@ * SPDX-License-Identifier: BSD-3-Clause */ +#include #include #include #include diff --git a/drivers/st/ddr/stm32mp_ddr_test.c b/drivers/st/ddr/stm32mp_ddr_test.c index 6b98095d6..6733cc62c 100644 --- a/drivers/st/ddr/stm32mp_ddr_test.c +++ b/drivers/st/ddr/stm32mp_ddr_test.c @@ -4,6 +4,7 @@ * SPDX-License-Identifier: BSD-3-Clause */ +#include #include #include diff --git a/drivers/st/ddr/stm32mp_ram.c b/drivers/st/ddr/stm32mp_ram.c index 1e555adbb..080456888 100644 --- a/drivers/st/ddr/stm32mp_ram.c +++ b/drivers/st/ddr/stm32mp_ram.c @@ -7,6 +7,7 @@ #include #include +#include #include #include #include