Commit 85e99b9f authored by Stephen Rothwell's avatar Stephen Rothwell Committed by Paul Mackerras
Browse files

[POWERPC] arch/powerpc/kernel: Use for_each_child_of_node

parent e25c47ff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ static int ibmebus_create_devices(const struct of_device_id *matches)

	root = of_find_node_by_path("/");

	for (child = NULL; (child = of_get_next_child(root, child)); ) {
	for_each_child_of_node(root, child) {
		if (!of_match_node(matches, child))
			continue;

+2 −2
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ static int of_platform_bus_create(const struct device_node *bus,
	struct of_device *dev;
	int rc = 0;

	for (child = NULL; (child = of_get_next_child(bus, child)); ) {
	for_each_child_of_node(bus, child) {
		pr_debug("   create child: %s\n", child->full_name);
		dev = of_platform_device_create(child, NULL, parent);
		if (dev == NULL)
@@ -171,7 +171,7 @@ int of_platform_bus_probe(struct device_node *root,
		rc = of_platform_bus_create(root, matches, &dev->dev);
		goto bail;
	}
	for (child = NULL; (child = of_get_next_child(root, child)); ) {
	for_each_child_of_node(root, child) {
		if (!of_match_node(matches, child))
			continue;

+2 −2
Original line number Diff line number Diff line
@@ -276,11 +276,11 @@ scan_OF_pci_childs(struct device_node *parent, pci_OF_scan_iterator filter, void
static struct device_node *scan_OF_for_pci_dev(struct device_node *parent,
					       unsigned int devfn)
{
	struct device_node *np = NULL;
	struct device_node *np;
	const u32 *reg;
	unsigned int psize;

	while ((np = of_get_next_child(parent, np)) != NULL) {
	for_each_child_of_node(parent, np) {
		reg = of_get_property(np, "reg", &psize);
		if (reg == NULL || psize < 4)
			continue;
+2 −2
Original line number Diff line number Diff line
@@ -227,7 +227,7 @@ EXPORT_SYMBOL(of_create_pci_dev);
void __devinit of_scan_bus(struct device_node *node,
			   struct pci_bus *bus)
{
	struct device_node *child = NULL;
	struct device_node *child;
	const u32 *reg;
	int reglen, devfn;
	struct pci_dev *dev;
@@ -235,7 +235,7 @@ void __devinit of_scan_bus(struct device_node *node,
	DBG("of_scan_bus(%s) bus no %d... \n", node->full_name, bus->number);

	/* Scan direct children */
	while ((child = of_get_next_child(node, child)) != NULL) {
	for_each_child_of_node(node, child) {
		DBG("  * %s\n", child->full_name);
		reg = of_get_property(child, "reg", &reglen);
		if (reg == NULL || reglen < 20)
+1 −4
Original line number Diff line number Diff line
@@ -280,10 +280,7 @@ void __init find_and_init_phbs(void)
	struct pci_controller *phb;
	struct device_node *root = of_find_node_by_path("/");

	for (node = of_get_next_child(root, NULL);
	     node != NULL;
	     node = of_get_next_child(root, node)) {

	for_each_child_of_node(root, node) {
		if (node->type == NULL || (strcmp(node->type, "pci") != 0 &&
					   strcmp(node->type, "pciex") != 0))
			continue;