summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorNikhil M Jain <n-jain1@ti.com>2023-06-21 13:59:52 +0300
committerTom Rini <trini@konsulko.com>2023-07-21 20:13:41 +0300
commiteeea6e298dc83b4a93a18c846e8e567d9beb0c1f (patch)
treea4c3132aab85355f6b19888ef1d993be1af529f3 /board
parent226ecf8be4c6a29caa86d1c9f33d5794c5732375 (diff)
downloadu-boot-eeea6e298dc83b4a93a18c846e8e567d9beb0c1f.tar.xz
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 <n-jain1@ti.com>
Diffstat (limited to 'board')
-rw-r--r--board/ti/am62x/evm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/board/ti/am62x/evm.c b/board/ti/am62x/evm.c
index 34830f445f..f7afd4f378 100644
--- a/board/ti/am62x/evm.c
+++ b/board/ti/am62x/evm.c
@@ -12,6 +12,7 @@
#include <init.h>
#include <video.h>
#include <splash.h>
+#include <cpu_func.h>
#include <k3-ddrss.h>
#include <fdt_support.h>
#include <asm/io.h>