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 | |||||
Tom Rini | abb9a04 | 2024-05-18 20:20:43 -0600 | [diff] [blame] | 7 | #include <common.h> |
Yixun Lan | 5dfa901 | 2023-07-08 19:24:32 +0800 | [diff] [blame] | 8 | #include <cpu_func.h> |
9 | |||||
10 | int board_init(void) | ||||
11 | { | ||||
12 | enable_caches(); | ||||
13 | |||||
14 | return 0; | ||||
15 | } |