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