Symbol: device_get_next_child_node
drivers/base/property.c
867
EXPORT_SYMBOL_GPL(device_get_next_child_node);
drivers/gpu/drm/i915/display/intel_acpi.c
305
fwnode = device_get_next_child_node(drm_dev->dev, fwnode);
drivers/input/keyboard/gpio_keys.c
909
child = device_get_next_child_node(dev, child);
drivers/input/keyboard/gpio_keys_polled.c
290
child = device_get_next_child_node(dev, child);
drivers/leds/flash/leds-lm3601x.c
363
child = device_get_next_child_node(&led->client->dev, child);
drivers/leds/flash/leds-rt4505.c
368
child = device_get_next_child_node(&client->dev, NULL);
drivers/leds/flash/leds-rt8515.c
306
child = device_get_next_child_node(dev, NULL);
drivers/leds/flash/leds-sgm3140.c
217
child_node = device_get_next_child_node(&pdev->dev, NULL);
drivers/leds/flash/leds-tps6131x.c
547
tps6131x->led_node = device_get_next_child_node(dev, NULL);
drivers/leds/leds-lm36274.c
80
child = device_get_next_child_node(dev, NULL);
drivers/leds/leds-lm3692x.c
431
child = device_get_next_child_node(&led->client->dev, child);
drivers/leds/leds-lt3593.c
84
child = device_get_next_child_node(dev, NULL);
drivers/leds/leds-spi-byte.c
102
child = device_get_next_child_node(dev, NULL);
drivers/leds/leds-tps6105x.c
55
priv->fwnode = device_get_next_child_node(pdev->dev.parent, NULL);
drivers/usb/typec/mux/intel_pmc_mux.c
771
fwnode = device_get_next_child_node(pmc->dev, fwnode);
include/linux/property.h
189
struct fwnode_handle *device_get_next_child_node(const struct device *dev,
include/linux/property.h
193
for (child = device_get_next_child_node(dev, NULL); child; \
include/linux/property.h
194
child = device_get_next_child_node(dev, child))
include/linux/property.h
202
device_get_next_child_node(dev, NULL); \
include/linux/property.h
203
child; child = device_get_next_child_node(dev, child))