From: Nikhil M Jain Date: Wed, 21 Jun 2023 10:59:52 +0000 (+0530) Subject: board: ti: am62x: evm: Include necessary header files X-Git-Tag: v2023.10-rc1~11^2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eeea6e298dc83b4a93a18c846e8e567d9beb0c1f;p=thirdparty%2Fu-boot.git board: ti: am62x: evm: Include necessary header files At the time of compilation evm.c gives below warning for implicit declaration of enable_caches, to mitigate this include cpu_func.h. board/ti/am62x/evm.c: In function ‘spl_board_init’: board/ti/am62x/evm.c:90:9: warning: implicit declaration of function ‘enable_caches’ [-Wimplicit-function-declaration] 90 | enable_caches(); Signed-off-by: Nikhil M Jain --- diff --git a/board/ti/am62x/evm.c b/board/ti/am62x/evm.c index 34830f445f7..f7afd4f3785 100644 --- a/board/ti/am62x/evm.c +++ b/board/ti/am62x/evm.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include