mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-31 14:02:05 -06:00
apb: convert init to realize
Convert a device model where initialization obviously can't fail, make it implement realize() rather than init(). Signed-off-by: Wei Jiangang <weijg.fnst@cn.fujitsu.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
86395eb31f
commit
be0d9760d7
1 changed files with 2 additions and 3 deletions
|
@ -634,7 +634,7 @@ static void pci_apb_set_irq(void *opaque, int irq_num, int level)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int apb_pci_bridge_initfn(PCIDevice *dev)
|
static void apb_pci_bridge_realize(PCIDevice *dev, Error **errp)
|
||||||
{
|
{
|
||||||
pci_bridge_initfn(dev, TYPE_PCI_BUS);
|
pci_bridge_initfn(dev, TYPE_PCI_BUS);
|
||||||
|
|
||||||
|
@ -652,7 +652,6 @@ static int apb_pci_bridge_initfn(PCIDevice *dev)
|
||||||
pci_set_word(dev->config + PCI_STATUS,
|
pci_set_word(dev->config + PCI_STATUS,
|
||||||
PCI_STATUS_FAST_BACK | PCI_STATUS_66MHZ |
|
PCI_STATUS_FAST_BACK | PCI_STATUS_66MHZ |
|
||||||
PCI_STATUS_DEVSEL_MEDIUM);
|
PCI_STATUS_DEVSEL_MEDIUM);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PCIBus *pci_apb_init(hwaddr special_base,
|
PCIBus *pci_apb_init(hwaddr special_base,
|
||||||
|
@ -843,7 +842,7 @@ static void pbm_pci_bridge_class_init(ObjectClass *klass, void *data)
|
||||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||||
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
||||||
|
|
||||||
k->init = apb_pci_bridge_initfn;
|
k->realize = apb_pci_bridge_realize;
|
||||||
k->exit = pci_bridge_exitfn;
|
k->exit = pci_bridge_exitfn;
|
||||||
k->vendor_id = PCI_VENDOR_ID_SUN;
|
k->vendor_id = PCI_VENDOR_ID_SUN;
|
||||||
k->device_id = PCI_DEVICE_ID_SUN_SIMBA;
|
k->device_id = PCI_DEVICE_ID_SUN_SIMBA;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue