diff options
author | Juan Quintela | 2009-09-10 03:04:26 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-09-11 17:19:52 +0200 |
commit | 6ee093c90761eabfc6255624000d3d8248802209 (patch) | |
tree | f550274a05a1cd7a379f3e4d1cb7789fb2e64b8c /hw/stellaris.c | |
parent | timers: remove useless check (diff) | |
download | qemu-6ee093c90761eabfc6255624000d3d8248802209.tar.gz qemu-6ee093c90761eabfc6255624000d3d8248802209.tar.xz qemu-6ee093c90761eabfc6255624000d3d8248802209.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/stellaris.c')
-rw-r--r-- | hw/stellaris.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/stellaris.c b/hw/stellaris.c index 0ea76527cf..bcde0a2977 100644 --- a/hw/stellaris.c +++ b/hw/stellaris.c @@ -90,7 +90,7 @@ static void gptm_reload(gptm_state *s, int n, int reset) tick += (int64_t)count * system_clock_scale; } else if (s->config == 1) { /* 32-bit RTC. 1Hz tick. */ - tick += ticks_per_sec; + tick += get_ticks_per_sec(); } else if (s->mode[n] == 0xa) { /* PWM mode. Not implemented. */ } else { |