MCPcopy Create free account
hub / github.com/coreboot/coreboot / final_link

Function final_link

src/device/device.c:621–631  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

619}
620
621static 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 *

Callers 1

dev_finalizeFunction · 0.85

Calls 1

final_devFunction · 0.85

Tested by

no test coverage detected