aboutsummaryrefslogtreecommitdiffstats
path: root/src/devices/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/timer.c')
-rw-r--r--src/devices/timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/timer.c b/src/devices/timer.c
index 750ac4c..70d854b 100644
--- a/src/devices/timer.c
+++ b/src/devices/timer.c
@@ -17,8 +17,8 @@ static int64_t ticks;
Initialized by timer_calibrate(). */
static unsigned loops_per_tick;
-/* Interrupts per second, writen only by timer_init */
-static uint16_t TIMER_FREQ = 0;
+/* Interrupts per second, written only by timer_init */
+uint16_t TIMER_FREQ = 0;
static intr_handler_func timer_interrupt;
static bool too_many_loops (unsigned loops);