mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
pcnet: pcnet_common_init() always returns 0, change to void
The next commit will exploit the fact it never fails. This one makes it obvious. 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
9af21dbee1
commit
4c3b22459d
4 changed files with 6 additions and 6 deletions
|
@ -316,7 +316,8 @@ static int pci_pcnet_init(PCIDevice *pci_dev)
|
|||
s->phys_mem_write = pci_physical_memory_write;
|
||||
s->dma_opaque = pci_dev;
|
||||
|
||||
return 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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue