[PATCH 2/3] board: sophgo: milkv_duo: Bind sysreset driver

Kongyang Liu seashell11234455 at gmail.com
Tue Apr 16 09:52:39 CEST 2024


Bind cv1800b sysreset driver for Sophgo Milk-V Duo board in board_init
function.

Signed-off-by: Kongyang Liu <seashell11234455 at gmail.com>
---

 board/sophgo/milkv_duo/board.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/board/sophgo/milkv_duo/board.c b/board/sophgo/milkv_duo/board.c
index eaa47be173..e7e28fe248 100644
--- a/board/sophgo/milkv_duo/board.c
+++ b/board/sophgo/milkv_duo/board.c
@@ -3,7 +3,11 @@
  * Copyright (c) 2024, Kongyang Liu <seashell11234455 at 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;
 }
-- 
2.41.0



More information about the U-Boot mailing list