From 05e97d0ef83a4c86512261e90ffe2c01686f4647 Mon Sep 17 00:00:00 2001 From: Naresh Kumar Ravulapalli Date: Mon, 30 Jun 2025 21:54:48 -0700 Subject: [PATCH] arch: arm: socfpga: Fix header file includes Appropriate header files are included according to U-Boot coding style. Signed-off-by: Tien Fong Chee Signed-off-by: Naresh Kumar Ravulapalli Reviewed-by: Tien Fong Chee --- arch/arm/mach-socfpga/secure_vab.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-socfpga/secure_vab.c b/arch/arm/mach-socfpga/secure_vab.c index e931f1043b3..9bad2873a49 100644 --- a/arch/arm/mach-socfpga/secure_vab.c +++ b/arch/arm/mach-socfpga/secure_vab.c @@ -1,17 +1,18 @@ // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2020 Intel Corporation - * + * Copyright (C) 2025 Altera Corporation */ +#include +#include #include #include #include #include -#include +#include #include #include -#include #define CHUNKSZ_PER_WD_RESET (256 * SZ_1K) -- 2.47.2