depths            136 drivers/firewire/core-topology.c 	int depths[2] = { -1, -1 };
depths            147 drivers/firewire/core-topology.c 		if (node->ports[i]->max_depth > depths[0]) {
depths            148 drivers/firewire/core-topology.c 			depths[1] = depths[0];
depths            149 drivers/firewire/core-topology.c 			depths[0] = node->ports[i]->max_depth;
depths            150 drivers/firewire/core-topology.c 		} else if (node->ports[i]->max_depth > depths[1])
depths            151 drivers/firewire/core-topology.c 			depths[1] = node->ports[i]->max_depth;
depths            154 drivers/firewire/core-topology.c 	node->max_depth = depths[0] + 1;
depths            155 drivers/firewire/core-topology.c 	node->max_hops = max(max_child_hops, depths[0] + depths[1] + 2);