diff options
author | Alex Williamson <alex.williamson@redhat.com> | 2012-07-03 22:39:27 -0600 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2012-07-04 15:52:55 +0300 |
commit | f90c2bcdbc69e41e575f868b984c3e2de8f51bac (patch) | |
tree | 1955dd08ce0a5e42ef1079ee292a4e5d95073776 /hw/pci.c | |
parent | 572992eefa74bfb92c24a28bd268de91a9311b0f (diff) | |
download | qemu-f90c2bcdbc69e41e575f868b984c3e2de8f51bac.zip qemu-f90c2bcdbc69e41e575f868b984c3e2de8f51bac.tar.gz qemu-f90c2bcdbc69e41e575f868b984c3e2de8f51bac.tar.bz2 |
pci: convert PCIUnregisterFunc to void
Not a single driver has any possibility of failure on their
exit function, let's keep it that way.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci.c')
-rw-r--r-- | hw/pci.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -837,12 +837,10 @@ static int pci_unregister_device(DeviceState *dev) { PCIDevice *pci_dev = PCI_DEVICE(dev); PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); - int ret = 0; - if (pc->exit) - ret = pc->exit(pci_dev); - if (ret) - return ret; + if (pc->exit) { + pc->exit(pci_dev); + } pci_unregister_io_regions(pci_dev); pci_del_option_rom(pci_dev); |