aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386/kernel/timers/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/i386/kernel/timers/timer.c')
-rw-r--r--arch/i386/kernel/timers/timer.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/i386/kernel/timers/timer.c b/arch/i386/kernel/timers/timer.c
index a3d6a288088b..7e39ed8e33f8 100644
--- a/arch/i386/kernel/timers/timer.c
+++ b/arch/i386/kernel/timers/timer.c
@@ -64,3 +64,12 @@ struct timer_opts* __init select_timer(void)
panic("select_timer: Cannot find a suitable timer\n");
return NULL;
}
+
+int read_current_timer(unsigned long *timer_val)
+{
+ if (cur_timer->read_timer) {
+ *timer_val = cur_timer->read_timer();
+ return 0;
+ }
+ return -1;
+}