mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-22 03:03:05 +00:00
16 lines
197 B
C
16 lines
197 B
C
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
/*
|
||
|
* Copyright (c) 2023, Yixun Lan <dlan@gentoo.org>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <cpu_func.h>
|
||
|
|
||
|
int board_init(void)
|
||
|
{
|
||
|
enable_caches();
|
||
|
|
||
|
return 0;
|
||
|
}
|