aboutsummaryrefslogtreecommitdiffstats
path: root/hw/sb16.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
commit6ee093c90761eabfc6255624000d3d8248802209 (patch)
treef550274a05a1cd7a379f3e4d1cb7789fb2e64b8c /hw/sb16.c
parentb03b2e48cb322cb695ff7a6666b25712140ea3c9 (diff)
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/sb16.c')
-rw-r--r--hw/sb16.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/sb16.c b/hw/sb16.c
index 38c5b7277..f6be2674c 100644
--- a/hw/sb16.c
+++ b/hw/sb16.c
@@ -757,8 +757,8 @@ static void complete (SB16State *s)
freq = s->freq > 0 ? s->freq : 11025;
samples = dsp_get_lohi (s) + 1;
bytes = samples << s->fmt_stereo << (s->fmt_bits == 16);
- ticks = (bytes * ticks_per_sec) / freq;
- if (ticks < ticks_per_sec / 1024) {
+ ticks = (bytes * get_ticks_per_sec()) / freq;
+ if (ticks < get_ticks_per_sec() / 1024) {
qemu_irq_raise (s->pic);
}
else {