soc/intel/quark: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: I102c9b9b1066064589149388d5ebbcd6d0d81fa7 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26542 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
committed by
Patrick Georgi
parent
d6cd255321
commit
696545db7b
@@ -121,7 +121,7 @@ static void chip_init(void *chip_info)
|
||||
fsp_silicon_init(romstage_handoff_is_resume());
|
||||
}
|
||||
|
||||
static void pci_domain_set_resources(device_t dev)
|
||||
static void pci_domain_set_resources(struct device *dev)
|
||||
{
|
||||
assign_resources(dev->link_list);
|
||||
}
|
||||
@@ -132,7 +132,7 @@ static struct device_operations pci_domain_ops = {
|
||||
.scan_bus = pci_domain_scan_bus,
|
||||
};
|
||||
|
||||
static void chip_enable_dev(device_t dev)
|
||||
static void chip_enable_dev(struct device *dev)
|
||||
{
|
||||
|
||||
/* Set the operations if it is a special bus type */
|
||||
|
Reference in New Issue
Block a user