On 29/07/2025 11:51, Ayush Singh wrote:
for_each_available_child_of_node(node, nc) {Where did you document the new ABI? There is no DT bindings patch with it.
+ /* Filter out extension node */
+ if (of_node_name_eq(nc, "spi-bus-extension"))
+ continue;
+
if (of_node_test_and_set_flag(nc, OF_POPULATED))
continue;
@@ -2541,6 +2549,23 @@ static void of_register_spi_children(struct spi_controller *ctlr,
of_node_clear_flag(nc, OF_POPULATED);
}
}
+
+ /* Look at extensions */
+ for_each_available_child_of_node(node, nc) {
+ if (!of_node_name_eq(nc, "spi-bus-extension"))
Best regards,
Krzysztof