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

Function dt_apply_fixups

src/commonlib/device_tree.c:1595–1604  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1593struct list_node device_tree_fixups;
1594
1595int dt_apply_fixups(struct device_tree *tree)
1596{
1597 struct device_tree_fixup *fixup;
1598 list_for_each(fixup, device_tree_fixups, list_node) {
1599 assert(fixup->fixup);
1600 if (fixup->fixup(fixup, tree))
1601 return 1;
1602 }
1603 return 0;
1604}
1605
1606int dt_set_bin_prop_by_path(struct device_tree *tree, const char *path,
1607 void *data, size_t data_size, int create)

Callers 1

fit_payloadFunction · 0.85

Calls 1

fixupMethod · 0.80

Tested by

no test coverage detected