Commit 46f4bbb8 authored by Zhang Zekun's avatar Zhang Zekun Committed by Michael Ellerman

powerpc/pseries/dlpar: Use helper function for_each_child_of_node()

for_each_child_of_node can help to iterate through the device_node,
and we don't need to use while loop. No functional change with this
conversion.
Signed-off-by: default avatarZhang Zekun <zhangzekun11@huawei.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20240822085430.25753-3-zhangzekun11@huawei.com
parent 197116e2
...@@ -250,11 +250,8 @@ int dlpar_detach_node(struct device_node *dn) ...@@ -250,11 +250,8 @@ int dlpar_detach_node(struct device_node *dn)
struct device_node *child; struct device_node *child;
int rc; int rc;
child = of_get_next_child(dn, NULL); for_each_child_of_node(dn, child)
while (child) {
dlpar_detach_node(child); dlpar_detach_node(child);
child = of_get_next_child(dn, child);
}
rc = of_detach_node(dn); rc = of_detach_node(dn);
if (rc) if (rc)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment