aboutsummaryrefslogtreecommitdiff
path: root/src/device/root_device.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-05-02 21:34:56 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-05-04 10:18:38 +0000
commit6e019d88eec2fcd4a2132e04ec6132ce87129119 (patch)
tree9e716d6c6d38ca43396a3351da2af36df61d16cf /src/device/root_device.c
parent69de0558655b7497985265eede8ee8fab87d838c (diff)
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 <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26008 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/device/root_device.c')
-rw-r--r--src/device/root_device.c14
1 files 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;