aboutsummaryrefslogtreecommitdiff
path: root/board/sophgo/milkv_duo/board.c
blob: e7e28fe2486df0146ff2e0df658d7d4d2936146d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (c) 2024, Kongyang Liu <seashell11234455@gmail.com>
 */

 #include <dm/lists.h>

int board_init(void)
{
	if (IS_ENABLED(CONFIG_SYSRESET_CV1800B))
		device_bind_driver(gd->dm_root, "cv1800b_sysreset", "sysreset", NULL);
	return 0;
}