1// 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}
16