blob: 16c3e456b3e590be95a153c988558b5c5e881d69 [file] [log] [blame]
Yixun Lan5dfa9012023-07-08 19:24:32 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (c) 2023, Yixun Lan <dlan@gentoo.org>
4 *
5 */
6
7#include <common.h>
8#include <cpu_func.h>
9
10int board_init(void)
11{
12 enable_caches();
13
14 return 0;
15}