mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-01 06:21:52 -06:00
pcnet: Convert to realize
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
4c3b22459d
commit
eb1bef94b4
1 changed files with 2 additions and 3 deletions
|
@ -278,7 +278,7 @@ static NetClientInfo net_pci_pcnet_info = {
|
||||||
.link_status_changed = pcnet_set_link_status,
|
.link_status_changed = pcnet_set_link_status,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int pci_pcnet_init(PCIDevice *pci_dev)
|
static void pci_pcnet_realize(PCIDevice *pci_dev, Error **errp)
|
||||||
{
|
{
|
||||||
PCIPCNetState *d = PCI_PCNET(pci_dev);
|
PCIPCNetState *d = PCI_PCNET(pci_dev);
|
||||||
PCNetState *s = &d->state;
|
PCNetState *s = &d->state;
|
||||||
|
@ -317,7 +317,6 @@ static int pci_pcnet_init(PCIDevice *pci_dev)
|
||||||
s->dma_opaque = pci_dev;
|
s->dma_opaque = pci_dev;
|
||||||
|
|
||||||
pcnet_common_init(DEVICE(pci_dev), s, &net_pci_pcnet_info);
|
pcnet_common_init(DEVICE(pci_dev), s, &net_pci_pcnet_info);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void pci_reset(DeviceState *dev)
|
static void pci_reset(DeviceState *dev)
|
||||||
|
@ -347,7 +346,7 @@ static void pcnet_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 = pci_pcnet_init;
|
k->realize = pci_pcnet_realize;
|
||||||
k->exit = pci_pcnet_uninit;
|
k->exit = pci_pcnet_uninit;
|
||||||
k->romfile = "efi-pcnet.rom",
|
k->romfile = "efi-pcnet.rom",
|
||||||
k->vendor_id = PCI_VENDOR_ID_AMD;
|
k->vendor_id = PCI_VENDOR_ID_AMD;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue