xref: /openbmc/u-boot/arch/arm/mach-rockchip/rk3399-board.c (revision 872cfa20cd694fdbfa76abddd3cd00b05ad5355b)
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