summaryrefslogtreecommitdiffstats
path: root/src/drivers/usb/acpi/usb_acpi.c
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2017-09-14 15:40:28 +0200
committerNico Huber <nico.h@gmx.de>2019-10-08 12:59:37 +0000
commita89c82e40210f4b61445bffdfec13cc08ea57f1f (patch)
tree63e5f5f95adff5c4e0f638bf61eb974152f008fa /src/drivers/usb/acpi/usb_acpi.c
parentc70af6530cc01cf1761543ed516ba7b60c349966 (diff)
downloadcoreboot-a89c82e40210f4b61445bffdfec13cc08ea57f1f.tar.gz
coreboot-a89c82e40210f4b61445bffdfec13cc08ea57f1f.tar.bz2
coreboot-a89c82e40210f4b61445bffdfec13cc08ea57f1f.zip
device/root_device: Consolidate common _scan_bus() functions
scan_usb_bus() and root_dev_scan_bus() had the very same implementation. So rename the latter to scan_static_bus() and use that for both cases. Change-Id: If0aba9c690b23e3716f2d47ff7a8c3e8f6d82679 Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/31901 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/usb/acpi/usb_acpi.c')
-rw-r--r--src/drivers/usb/acpi/usb_acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/usb/acpi/usb_acpi.c b/src/drivers/usb/acpi/usb_acpi.c
index 31a7a7f30b5e..2f2ad32633c3 100644
--- a/src/drivers/usb/acpi/usb_acpi.c
+++ b/src/drivers/usb/acpi/usb_acpi.c
@@ -85,7 +85,7 @@ static struct device_operations usb_acpi_ops = {
.read_resources = DEVICE_NOOP,
.set_resources = DEVICE_NOOP,
.enable_resources = DEVICE_NOOP,
- .scan_bus = scan_usb_bus,
+ .scan_bus = scan_static_bus,
.acpi_fill_ssdt_generator = usb_acpi_fill_ssdt_generator,
};