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