device/pcix_device.c: Get rid of device_t
Use of `device_t` has been abandoned in ramstage. Change-Id: I14c0db71ffa5faa8321c88c9c75c0c18a70910e8 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26006 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
2f119a31f7
commit
b9e82f03b1
|
@ -20,7 +20,7 @@
|
|||
#include <device/pci_ids.h>
|
||||
#include <device/pcix.h>
|
||||
|
||||
static void pcix_tune_dev(device_t dev)
|
||||
static void pcix_tune_dev(struct device *dev)
|
||||
{
|
||||
u32 status;
|
||||
u16 orig_cmd, cmd;
|
||||
|
@ -61,7 +61,7 @@ static void pcix_tune_dev(device_t dev)
|
|||
|
||||
static void pcix_tune_bus(struct bus *bus)
|
||||
{
|
||||
device_t child;
|
||||
struct device *child;
|
||||
|
||||
for (child = bus->children; child; child = child->sibling)
|
||||
pcix_tune_dev(child);
|
||||
|
@ -108,7 +108,7 @@ const char *pcix_speed(u16 sstatus)
|
|||
return result;
|
||||
}
|
||||
|
||||
void pcix_scan_bridge(device_t dev)
|
||||
void pcix_scan_bridge(struct device *dev)
|
||||
{
|
||||
unsigned int pos;
|
||||
u16 sstatus;
|
||||
|
|
Loading…
Reference in New Issue