mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -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
|
@ -114,10 +114,9 @@ static int pci_grackle_init_device(SysBusDevice *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int grackle_pci_host_init(PCIDevice *d)
|
||||
static void grackle_pci_host_realize(PCIDevice *d, Error **errp)
|
||||
{
|
||||
d->config[0x09] = 0x01;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void grackle_pci_class_init(ObjectClass *klass, void *data)
|
||||
|
@ -125,7 +124,7 @@ static void grackle_pci_class_init(ObjectClass *klass, void *data)
|
|||
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
|
||||
k->init = grackle_pci_host_init;
|
||||
k->realize = grackle_pci_host_realize;
|
||||
k->vendor_id = PCI_VENDOR_ID_MOTOROLA;
|
||||
k->device_id = PCI_DEVICE_ID_MOTOROLA_MPC106;
|
||||
k->revision = 0x00;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue