From 356ed961184847dcd088cfcda44b71eeb0ef2377 Mon Sep 17 00:00:00 2001 From: Yann Gautier Date: Thu, 27 Jan 2022 13:55:18 +0100 Subject: [PATCH] fix(stm32mp1): add missing debug.h Due to stm32mp_shres_helpers.h removal, the debug.h header is no more included. It should then be added to stm32mp1_boot_device.c. Signed-off-by: Yann Gautier Change-Id: I397911ac05fdff464c010cf3b2e04320a781b4aa --- plat/st/stm32mp1/stm32mp1_boot_device.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plat/st/stm32mp1/stm32mp1_boot_device.c b/plat/st/stm32mp1/stm32mp1_boot_device.c index 997335d0d..6a0570795 100644 --- a/plat/st/stm32mp1/stm32mp1_boot_device.c +++ b/plat/st/stm32mp1/stm32mp1_boot_device.c @@ -1,11 +1,12 @@ /* - * Copyright (c) 2019, STMicroelectronics - All Rights Reserved + * Copyright (c) 2019-2022, STMicroelectronics - All Rights Reserved * * SPDX-License-Identifier: BSD-3-Clause */ #include +#include #include #include #include -- 2.39.5