mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00: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;
|
||
|
}
|