Skip to content

Commit fc86cb9

Browse files
GuEe-GUIRbb666
authored andcommittedMar 19, 2025·
[DM/Platform] Fixup the node will probe more than once
If a node request a new node or it's parent node. the request's node will probe a double time. So we check the device object of node in ofw probe entry and ofw probe child exit.
1 parent b0e7cba commit fc86cb9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

‎components/drivers/core/platform_ofw.c

+12
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,12 @@ static rt_err_t platform_ofw_device_probe_once(struct rt_ofw_node *parent_np)
117117
struct rt_ofw_node_id *id;
118118
struct rt_ofw_prop *compat_prop = RT_NULL;
119119

120+
if (np->dev)
121+
{
122+
/* Check first */
123+
continue;
124+
}
125+
120126
LOG_D("%s found in %s", np->full_name, parent_np->full_name);
121127

122128
/* Is system node or have driver */
@@ -151,6 +157,12 @@ static rt_err_t platform_ofw_device_probe_once(struct rt_ofw_node *parent_np)
151157
}
152158
}
153159

160+
if (np->dev)
161+
{
162+
/* Maybe the childs have requested this node */
163+
continue;
164+
}
165+
154166
pdev = alloc_ofw_platform_device(np);
155167

156168
if (!pdev)

0 commit comments

Comments
 (0)
Please sign in to comment.