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 --- hw/wdt_ib700.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/wdt_ib700.c') diff --git a/hw/wdt_ib700.c b/hw/wdt_ib700.c index e0ee65a85b..0ee3a5cc06 100644 --- a/hw/wdt_ib700.c +++ b/hw/wdt_ib700.c @@ -52,7 +52,7 @@ static void ib700_write_enable_reg(void *vp, uint32_t addr, uint32_t data) ib700_debug("addr = %x, data = %x\n", addr, data); - timeout = (int64_t) time_map[data & 0xF] * ticks_per_sec; + timeout = (int64_t) time_map[data & 0xF] * get_ticks_per_sec(); qemu_mod_timer(timer, qemu_get_clock (vm_clock) + timeout); } -- cgit v1.2.3