From 6e019d88eec2fcd4a2132e04ec6132ce87129119 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Wed, 2 May 2018 21:34:56 +0200 Subject: device/root_device.c: Get rid of device_t Use of `device_t` has been abandoned in ramstage. Change-Id: Ia25c5097d4cfa979c18a855e656ad794c2f0260c Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/26008 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/device/root_device.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/device/root_device.c b/src/device/root_device.c index 8e985931fe..a19028d43d 100644 --- a/src/device/root_device.c +++ b/src/device/root_device.c @@ -43,9 +43,9 @@ const char mainboard_name[] = CONFIG_MAINBOARD_VENDOR " " CONFIG_MAINBOARD_PART_ * @param bus Pointer to the device to which the static buses are attached to. */ -void scan_static_bus(device_t bus) +void scan_static_bus(struct device *bus) { - device_t child; + struct device *child; struct bus *link; for (link = bus->link_list; link; link = link->next) { @@ -63,7 +63,7 @@ void scan_static_bus(device_t bus) } } -void scan_lpc_bus(device_t bus) +void scan_lpc_bus(struct device *bus) { printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(bus)); @@ -72,9 +72,9 @@ void scan_lpc_bus(device_t bus) printk(BIOS_SPEW, "%s for %s done\n", __func__, dev_path(bus)); } -void scan_generic_bus(device_t bus) +void scan_generic_bus(struct device *bus) { - device_t child; + struct device *child; struct bus *link; static int bus_max = 0; @@ -103,7 +103,7 @@ void scan_generic_bus(device_t bus) printk(BIOS_SPEW, "%s for %s done\n", __func__, dev_path(bus)); } -void scan_smbus(device_t bus) +void scan_smbus(struct device *bus) { scan_generic_bus(bus); } @@ -115,7 +115,7 @@ void scan_smbus(device_t bus) * * @param root The root device structure. */ -static void root_dev_scan_bus(device_t bus) +static void root_dev_scan_bus(struct device *bus) { struct bus *link; -- cgit v1.2.3