Yixun Lan | 5dfa901 | 2023-07-08 19:24:32 +0800 | [diff] [blame] | 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 | |||||
10 | int board_init(void) | ||||
11 | { | ||||
12 | enable_caches(); | ||||
13 | |||||
14 | return 0; | ||||
15 | } |