qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 15/15] kvm: fix FPU state subsection


From: Marcelo Tosatti
Subject: [Qemu-devel] [PATCH 15/15] kvm: fix FPU state subsection
Date: Tue, 21 Jun 2011 14:08:04 -0300

There is no need to specify version on the subsection fields.

Signed-off-by: Marcelo Tosatti <address@hidden>
---
 target-i386/machine.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/target-i386/machine.c b/target-i386/machine.c
index d22a731..7662aa2 100644
--- a/target-i386/machine.c
+++ b/target-i386/machine.c
@@ -303,9 +303,9 @@ static const VMStateDescription vmstate_fpop_ip_dp = {
     .minimum_version_id = 1,
     .minimum_version_id_old = 1,
     .fields      = (VMStateField []) {
-        VMSTATE_UINT16_V(fpop, CPUState, 13),
-        VMSTATE_UINT64_V(fpip, CPUState, 13),
-        VMSTATE_UINT64_V(fpdp, CPUState, 13),
+        VMSTATE_UINT16(fpop, CPUState),
+        VMSTATE_UINT64(fpip, CPUState),
+        VMSTATE_UINT64(fpdp, CPUState),
         VMSTATE_END_OF_LIST()
     }
 };
-- 
1.7.5.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]