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

Function show_devs_subtree

src/device/device_util.c:754–762  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

752}
753
754void show_devs_subtree(struct device *root, int debug_level, const char *msg)
755{
756 /* Bail if not printing to screen. */
757 if (!printk(debug_level, "Show all devs in subtree %s... %s\n",
758 dev_path(root), msg))
759 return;
760 printk(debug_level, "%s\n", msg);
761 show_devs_tree(root, debug_level, 0);
762}
763
764void show_all_devs(int debug_level, const char *msg)
765{

Callers

nothing calls this directly

Calls 3

dev_pathFunction · 0.85
show_devs_treeFunction · 0.85
printkFunction · 0.50

Tested by

no test coverage detected