Skip to content

Commit 365130f

Browse files
committed
device property: Introduce device_for_each_child_node_scoped()
Similar to recently propose for_each_child_of_node_scoped() this new version of the loop macro instantiates a new local struct fwnode_handle * that uses the __free(fwnode_handle) auto cleanup handling so that if a reference to a node is held on early exit from the loop the reference will be released. If the loop runs to completion, the child pointer will be NULL and no action will be taken. The reason this is useful is that it removes the need for fwnode_handle_put() on early loop exits. If there is a need to retain the reference, then return_ptr(child) or no_free_ptr(child) may be used to safely disable the auto cleanup. Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Sakari Ailus <sakari.ailus@linux.intel.com> Link: https://lore.kernel.org/r/20240217164249.921878-5-jic23@kernel.org Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
1 parent 59ed5e2 commit 365130f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

include/linux/property.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,11 @@ struct fwnode_handle *device_get_next_child_node(const struct device *dev,
175175
for (child = device_get_next_child_node(dev, NULL); child; \
176176
child = device_get_next_child_node(dev, child))
177177

178+
#define device_for_each_child_node_scoped(dev, child) \
179+
for (struct fwnode_handle *child __free(fwnode_handle) = \
180+
device_get_next_child_node(dev, NULL); \
181+
child; child = device_get_next_child_node(dev, child))
182+
178183
struct fwnode_handle *fwnode_get_named_child_node(const struct fwnode_handle *fwnode,
179184
const char *childname);
180185
struct fwnode_handle *device_get_named_child_node(const struct device *dev,

0 commit comments

Comments
 (0)