summaryrefslogtreecommitdiff
path: root/hw/tsc210x.c
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-09-10 03:04:26 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-09-11 10:19:52 -0500
commit0fb1b4ee37fbb454f85badd7dbb8e45e6df93978 (patch)
treef550274a05a1cd7a379f3e4d1cb7789fb2e64b8c /hw/tsc210x.c
parent3a888e8e5a0f0e0d85629a17e38e36a75ad1452f (diff)
downloadqemu-0fb1b4ee37fbb454f85badd7dbb8e45e6df93978.tar.gz
qemu-0fb1b4ee37fbb454f85badd7dbb8e45e6df93978.tar.bz2
qemu-0fb1b4ee37fbb454f85badd7dbb8e45e6df93978.zip
Unexport ticks_per_sec variable. Create get_ticks_per_sec() function
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/tsc210x.c')
-rw-r--r--hw/tsc210x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/tsc210x.c b/hw/tsc210x.c
index 004e607649..6bbe24d2fe 100644
--- a/hw/tsc210x.c
+++ b/hw/tsc210x.c
@@ -864,7 +864,7 @@ static void tsc210x_pin_update(TSC210xState *s)
s->busy = 1;
s->precision = s->nextprecision;
s->function = s->nextfunction;
- expires = qemu_get_clock(vm_clock) + (ticks_per_sec >> 10);
+ expires = qemu_get_clock(vm_clock) + (get_ticks_per_sec() >> 10);
qemu_mod_timer(s->timer, expires);
}