aboutsummaryrefslogtreecommitdiff
path: root/src/device/device.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2016-08-15 10:04:21 +0300
committerMartin Roth <martinroth@google.com>2017-02-06 20:22:01 +0100
commit3d3c8c30ead13f641d97e4b526547fe5af71522f (patch)
tree825da890d47c56f03ce9cea8cb697905e3b5eb83 /src/device/device.c
parent8e4aafb531cb0455bf01effec5bbbc16c890cdf8 (diff)
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>
Diffstat (limited to 'src/device/device.c')
-rw-r--r--src/device/device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/device.c b/src/device/device.c
index 9ea32cca49..0231ec72c9 100644
--- a/src/device/device.c
+++ b/src/device/device.c
@@ -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);