Comments
Patch
@@ -328,17 +328,6 @@ const VMStateDescription vmstate_msix = {
}
};
-void msix_save(PCIDevice *dev, QEMUFile *f)
-{
- vmstate_save_state(f, &vmstate_msix, dev);
-}
-
-void msix_load(PCIDevice *dev, QEMUFile *f)
-{
- vmstate_load_state(f, &vmstate_msix, dev, vmstate_msix.version_id);
-}
-
-
/* Does device support MSI-X? */
int msix_present(PCIDevice *dev)
{
@@ -16,8 +16,6 @@ void msix_mmio_map(PCIDevice *pci_dev, int region_num,
int msix_uninit(PCIDevice *d);
extern const VMStateDescription vmstate_msix;
-void msix_save(PCIDevice *dev, QEMUFile *f);
-void msix_load(PCIDevice *dev, QEMUFile *f);
int msix_enabled(PCIDevice *dev);
int msix_present(PCIDevice *dev);
Signed-off-by: Juan Quintela <quintela@redhat.com> --- hw/msix.c | 11 ----------- hw/msix.h | 2 -- 2 files changed, 0 insertions(+), 13 deletions(-)