Home
last modified time | relevance | path

Searched refs:all_children (Results 1 – 1 of 1) sorted by relevance

/linux-5.19.10/drivers/iio/multiplexer/
Diio-mux.c335 int all_children; in mux_probe() local
354 all_children = device_property_string_array_count(dev, "channels"); in mux_probe()
355 if (all_children < 0) in mux_probe()
356 return all_children; in mux_probe()
358 labels = devm_kmalloc_array(dev, all_children, sizeof(*labels), GFP_KERNEL); in mux_probe()
362 ret = device_property_read_string_array(dev, "channels", labels, all_children); in mux_probe()
367 for (state = 0; state < all_children; state++) { in mux_probe()
426 for (state = 0; state < all_children; state++) { in mux_probe()