diff options
author | Juan Quintela <quintela@redhat.com> | 2010-12-01 23:51:14 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-04-22 14:41:40 -0500 |
commit | 852f771ec9e5cb5e57b4023209f37dd331d5dbdd (patch) | |
tree | 3a7bc428af10603e34ad0b570d174d3fb94fa0a3 /qemu-timer.h | |
parent | 22a3faf507a9de2fab8988daf39ff41d09419bec (diff) |
vmstate: port pmtimer
It was a half conversion. Finish it.
enabled can only get values of 0, 1 or 2, was declared as an int but
sent as an unint8_t, change its type.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'qemu-timer.h')
-rw-r--r-- | qemu-timer.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/qemu-timer.h b/qemu-timer.h index bbc3452bc..2cacf6553 100644 --- a/qemu-timer.h +++ b/qemu-timer.h @@ -144,8 +144,6 @@ uint64_t ptimer_get_count(ptimer_state *s); void ptimer_set_count(ptimer_state *s, uint64_t count); void ptimer_run(ptimer_state *s, int oneshot); void ptimer_stop(ptimer_state *s); -void qemu_put_ptimer(QEMUFile *f, ptimer_state *s); -void qemu_get_ptimer(QEMUFile *f, ptimer_state *s); /* icount */ int64_t qemu_icount_round(int64_t count); |