blob: 01dbfa75cb2b1b1ff8649d02a824e8ee7bdaec50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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;
}
|