mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
pci: Trivial device model conversions to realize
Convert the device models where initialization obviously can't fail. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Gonglei <arei.gonglei@huawei.com>
This commit is contained in:
parent
7ee6c1e182
commit
9af21dbee1
34 changed files with 87 additions and 152 deletions
|
@ -573,7 +573,7 @@ static const MemoryRegionOps tpci200_las3_ops = {
|
|||
}
|
||||
};
|
||||
|
||||
static int tpci200_initfn(PCIDevice *pci_dev)
|
||||
static void tpci200_realize(PCIDevice *pci_dev, Error **errp)
|
||||
{
|
||||
TPCI200State *s = TPCI200(pci_dev);
|
||||
uint8_t *c = s->dev.config;
|
||||
|
@ -609,8 +609,6 @@ static int tpci200_initfn(PCIDevice *pci_dev)
|
|||
|
||||
ipack_bus_new_inplace(&s->bus, sizeof(s->bus), DEVICE(pci_dev), NULL,
|
||||
N_MODULES, tpci200_set_irq);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const VMStateDescription vmstate_tpci200 = {
|
||||
|
@ -632,7 +630,7 @@ static void tpci200_class_init(ObjectClass *klass, void *data)
|
|||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
||||
|
||||
k->init = tpci200_initfn;
|
||||
k->realize = tpci200_realize;
|
||||
k->vendor_id = PCI_VENDOR_ID_TEWS;
|
||||
k->device_id = PCI_DEVICE_ID_TEWS_TPCI200;
|
||||
k->class_id = PCI_CLASS_BRIDGE_OTHER;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue