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