summaryrefslogtreecommitdiffstats
path: root/hw/hpet.c
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-09-29 22:48:22 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-10-05 09:32:37 -0500
commitd4bfa4d7c6e53f03df49f2dfc3fa87d5e18218dd (patch)
treeeeba5e21d01737d1261dc96e129a7608455e8687 /hw/hpet.c
parente59fb3741bee196e3177fdbd2d00c87865ecace3 (diff)
downloadhqemu-d4bfa4d7c6e53f03df49f2dfc3fa87d5e18218dd.zip
hqemu-d4bfa4d7c6e53f03df49f2dfc3fa87d5e18218dd.tar.gz
vmstate: remove const from pre_save() functions
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/hpet.c')
-rw-r--r--hw/hpet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/hpet.c b/hw/hpet.c
index 6535b8e..64163bd 100644
--- a/hw/hpet.c
+++ b/hw/hpet.c
@@ -157,9 +157,9 @@ static void update_irq(struct HPETTimer *timer)
}
}
-static void hpet_pre_save(const void *opaque)
+static void hpet_pre_save(void *opaque)
{
- HPETState *s = (void *)opaque;
+ HPETState *s = opaque;
/* save current counter value */
s->hpet_counter = hpet_get_ticks();
}
OpenPOWER on IntegriCloud