From c47ffe65472707bd885abe5d6d3b8aa891fdb398 Mon Sep 17 00:00:00 2001 From: Devarsh Thakkar Date: Fri, 23 Feb 2024 13:54:58 +0530 Subject: board: ti: am62p: Fix compilation warning for implicit declaration Fixes below warning by including cpu_funcs.h: "board/ti/am62px/evm.c: In function `spl_board_init`: board/ti/am62px/evm.c:83:9: warning: implicit declaration of function `enable_caches` [-Wimplicit-function-declaration] 83 | enable_caches();" | ^~~~~~~~~~~~~ While at it, also sort the include headers by placing video.h at the end. Fixes: a7e8f56abf9 ("board: ti: am62p: Add splash screen support") Reviewed-by: Kamlesh Gurudasani Signed-off-by: Devarsh Thakkar --- board/ti/am62px/evm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/ti/am62px/evm.c b/board/ti/am62px/evm.c index 6e06003f21..5ab56260a4 100644 --- a/board/ti/am62px/evm.c +++ b/board/ti/am62px/evm.c @@ -9,13 +9,13 @@ #include #include #include +#include #include #include #include #include -#include #include - +#include #include "../common/rtc.h" #include "../common/k3-ddr-init.h" -- cgit v1.2.3