mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 10:54:37 +00:00

As part of bringing the master branch back in to next, we need to allow for all of these changes to exist here. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
14 lines
177 B
C
14 lines
177 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2023, Yixun Lan <dlan@gentoo.org>
|
|
*
|
|
*/
|
|
|
|
#include <cpu_func.h>
|
|
|
|
int board_init(void)
|
|
{
|
|
enable_caches();
|
|
|
|
return 0;
|
|
}
|