mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
15 lines
218 B
C
15 lines
218 B
C
![]() |
/*
|
||
|
* Copyright (c) 2017 Rockchip Electronics Co., Ltd
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <asm/arch/boot_mode.h>
|
||
|
|
||
|
int board_late_init(void)
|
||
|
{
|
||
|
setup_boot_mode();
|
||
|
return 0;
|
||
|
}
|