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