xref: /openbmc/u-boot/arch/arm/mach-rockchip/rk3399-board.c (revision 9925f1dbc38c0ef7220c6fca5968c708b8e48764)
1 /*
2  * Copyright (c) 2017 Rockchip Electronics Co., Ltd
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 
7 #include <common.h>
8 #include <asm/arch/boot_mode.h>
9 
10 int board_late_init(void)
11 {
12 	setup_boot_mode();
13 	return 0;
14 }
15