devtree: Drop unused parameter show_devs_tree() call

Change-Id: I14c044bb32713ef4133bce8a8238a2bc200c4959
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/18085
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Kyösti Mälkki 2016-08-15 10:04:21 +03:00 committed by Martin Roth
parent 8e4aafb531
commit 3d3c8c30ea
3 changed files with 6 additions and 6 deletions

View file

@ -989,7 +989,7 @@ void dev_enumerate(void)
show_all_devs(BIOS_SPEW, "Before device enumeration.");
printk(BIOS_SPEW, "Compare with tree...\n");
show_devs_tree(root, BIOS_SPEW, 0, 0);
show_devs_tree(root, BIOS_SPEW, 0);
if (root->chip_ops && root->chip_ops->enable_dev)
root->chip_ops->enable_dev(root);

View file

@ -813,7 +813,7 @@ void print_resource_tree(struct device *root, int debug_level, const char *msg)
resource_tree(root, debug_level, 0);
}
void show_devs_tree(struct device *dev, int debug_level, int depth, int linknum)
void show_devs_tree(struct device *dev, int debug_level, int depth)
{
char depth_str[20];
int i;
@ -830,7 +830,7 @@ void show_devs_tree(struct device *dev, int debug_level, int depth, int linknum)
for (link = dev->link_list; link; link = link->next) {
for (sibling = link->children; sibling;
sibling = sibling->sibling)
show_devs_tree(sibling, debug_level, depth + 1, i);
show_devs_tree(sibling, debug_level, depth + 1);
}
}
@ -839,7 +839,7 @@ void show_all_devs_tree(int debug_level, const char *msg)
/* Bail if not printing to screen. */
if (!do_printk(debug_level, "Show all devs in tree form... %s\n", msg))
return;
show_devs_tree(all_devices, debug_level, 0, -1);
show_devs_tree(all_devices, debug_level, 0);
}
void show_devs_subtree(struct device *root, int debug_level, const char *msg)
@ -849,7 +849,7 @@ void show_devs_subtree(struct device *root, int debug_level, const char *msg)
dev_path(root), msg))
return;
do_printk(debug_level, "%s\n", msg);
show_devs_tree(root, debug_level, 0, -1);
show_devs_tree(root, debug_level, 0);
}
void show_all_devs(int debug_level, const char *msg)

View file

@ -214,7 +214,7 @@ void set_cpu_topology(device_t cpu, unsigned node, unsigned package, unsigned co
/* Debug functions */
void print_resource_tree(struct device * root, int debug_level,
const char *msg);
void show_devs_tree(struct device *dev, int debug_level, int depth, int linknum);
void show_devs_tree(struct device *dev, int debug_level, int depth);
void show_devs_subtree(struct device *root, int debug_level, const char *msg);
void show_all_devs(int debug_level, const char *msg);
void show_all_devs_tree(int debug_level, const char *msg);