diff options
author | Juan Quintela <quintela@redhat.com> | 2009-10-14 15:43:42 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-27 12:28:55 -0500 |
commit | c32646631aab72c4b6807b77d12f0cfe4eee2953 (patch) | |
tree | f78e54c1172cdf34c1ae0f30170c43bd8f234e53 /hw/vga.c | |
parent | a4f9631ceed50ada61cb70248ce34917e3b34c56 (diff) | |
download | qemu-c32646631aab72c4b6807b77d12f0cfe4eee2953.zip |
vga: remove unused vga_common_save/load
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/vga.c')
-rw-r--r-- | hw/vga.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -2182,16 +2182,6 @@ const VMStateDescription vmstate_vga_common = { } }; -void vga_common_save(QEMUFile *f, void *opaque) -{ - vmstate_save_state(f, &vmstate_vga_common, opaque); -} - -int vga_common_load(QEMUFile *f, void *opaque, int version_id) -{ - return vmstate_load_state(f, &vmstate_vga_common, opaque, vmstate_vga_common.version_id); -} - void vga_common_init(VGACommonState *s, int vga_ram_size) { int i, j, v, b; |