linuxOS_D21X/source/uboot-2021.10/arch/arm/mach-rockchip/rk3128/rk3128.c

17 lines
275 B
C
Raw Normal View History

2024-11-29 08:13:19 +00:00
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (c) 2017 Rockchip Electronics Co., Ltd
*/
#include <common.h>
#include <init.h>
#include <asm/global_data.h>
DECLARE_GLOBAL_DATA_PTR;
int arch_cpu_init(void)
{
/* We do some SoC one time setting here. */
return 0;
}