| 619 | } |
| 620 | |
| 621 | static void final_link(struct bus *link) |
| 622 | { |
| 623 | struct device *dev; |
| 624 | |
| 625 | for (dev = link->children; dev; dev = dev->sibling) |
| 626 | final_dev(dev); |
| 627 | |
| 628 | for (dev = link->children; dev; dev = dev->sibling) |
| 629 | if (dev->downstream) |
| 630 | final_link(dev->downstream); |
| 631 | } |
| 632 | /** |
| 633 | * Finalize all devices in the global device tree. |
| 634 | * |
no test coverage detected