diff options
author | Juan Quintela <quintela@redhat.com> | 2009-10-07 20:58:03 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-27 12:28:46 -0500 |
commit | b3a7d3287c87f5da66bcfc2ab8db2fdc61811545 (patch) | |
tree | 69cf12d39d4ac08c76be964d7a456e8294211a2d /hw/ide/core.c | |
parent | 407a4f3073803a948843617239f1729faaeda23f (diff) |
ide: pre VMState functions are not needed anymore
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/ide/core.c')
-rw-r--r-- | hw/ide/core.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/hw/ide/core.c b/hw/ide/core.c index c08d5aa639..fffcd00280 100644 --- a/hw/ide/core.c +++ b/hw/ide/core.c @@ -2643,17 +2643,6 @@ const VMStateDescription vmstate_ide_drive = { } }; -void ide_save(QEMUFile* f, IDEState *s) -{ - vmstate_save_state(f, &vmstate_ide_drive, s); -} - -void ide_load(QEMUFile* f, IDEState *s, int version_id) -{ - vmstate_load_state(f, &vmstate_ide_drive, s, vmstate_ide_drive.version_id); -} - - const VMStateDescription vmstate_ide_bus = { .name = "ide_bus", .version_id = 1, @@ -2666,16 +2655,6 @@ const VMStateDescription vmstate_ide_bus = { } }; -void idebus_save(QEMUFile* f, IDEBus *bus) -{ - vmstate_save_state(f, &vmstate_ide_bus, bus); -} - -void idebus_load(QEMUFile* f, IDEBus *bus, int version_id) -{ - vmstate_load_state(f, &vmstate_ide_bus, bus, vmstate_ide_bus.version_id); -} - /***********************************************************/ /* PCI IDE definitions */ |