From 6ee093c90761eabfc6255624000d3d8248802209 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Thu, 10 Sep 2009 03:04:26 +0200 Subject: Unexport ticks_per_sec variable. Create get_ticks_per_sec() function Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- target-ppc/kvm_ppc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target-ppc') diff --git a/target-ppc/kvm_ppc.c b/target-ppc/kvm_ppc.c index 6b7f4113c3..50930164c6 100644 --- a/target-ppc/kvm_ppc.c +++ b/target-ppc/kvm_ppc.c @@ -99,7 +99,7 @@ void kvmppc_init(void) * an idle guest does no IO, qemu's device model will never get a chance to * run. So, until Qemu gains IO threads, we create this timer to ensure * that the device model gets a chance to run. */ - kvmppc_timer_rate = ticks_per_sec / 10; + kvmppc_timer_rate = get_ticks_per_sec() / 10; kvmppc_timer = qemu_new_timer(vm_clock, &kvmppc_timer_hack, NULL); qemu_mod_timer(kvmppc_timer, qemu_get_clock(vm_clock) + kvmppc_timer_rate); } -- cgit v1.2.1