qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: malc <av1474@comtv.ru>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [4770] Do not save dynamic field
Date: Sat, 21 Jun 2008 17:51:51 +0000	[thread overview]
Message-ID: <E1KA7Ff-0005tR-Oq@cvs.savannah.gnu.org> (raw)

Revision: 4770
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4770
Author:   malc
Date:     2008-06-21 17:51:50 +0000 (Sat, 21 Jun 2008)

Log Message:
-----------
Do not save dynamic field

Modified Paths:
--------------
    trunk/hw/gus.c

Modified: trunk/hw/gus.c
===================================================================
--- trunk/hw/gus.c	2008-06-21 17:15:00 UTC (rev 4769)
+++ trunk/hw/gus.c	2008-06-21 17:51:50 UTC (rev 4770)
@@ -225,7 +225,6 @@
     int32_t val;
     GUSState *s = opaque;
 
-    val = s->freq;    qemu_put_be32s (f, &val);
     val = s->pos;     qemu_put_be32s (f, &val);
     val = s->left;    qemu_put_be32s (f, &val);
     val = s->shift;   qemu_put_be32s (f, &val);
@@ -240,10 +239,9 @@
     int32_t val;
     GUSState *s = opaque;
 
-    if (version_id != 1)
+    if (version_id != 2)
         return -EINVAL;
 
-    qemu_get_be32s (f, &val); s->freq = val;
     qemu_get_be32s (f, &val); s->pos = val;
     qemu_get_be32s (f, &val); s->left = val;
     qemu_get_be32s (f, &val); s->shift = val;
@@ -331,6 +329,6 @@
 
     AUD_set_active_out (s->voice, 1);
 
-    register_savevm ("gus", 0, 1, GUS_save, GUS_load, s);
+    register_savevm ("gus", 0, 2, GUS_save, GUS_load, s);
     return 0;
 }

                 reply	other threads:[~2008-06-21 17:51 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1KA7Ff-0005tR-Oq@cvs.savannah.gnu.org \
    --to=av1474@comtv.ru \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).