aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/hrtimer.h
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2008-09-19 13:13:48 +0100
committerIngo Molnar <mingo@elte.hu>2008-09-22 13:52:42 +0200
commitb91c4996df56fcd201f85c392a1de7bc3f6641f5 (patch)
tree8bf1395a75d035d8f01eda8aefaee5c0716ee03f /include/linux/hrtimer.h
parenthrtimer: remove hrtimer_clock_base::get_softirq_time() (diff)
downloadlinux-dev-b91c4996df56fcd201f85c392a1de7bc3f6641f5.tar.xz
linux-dev-b91c4996df56fcd201f85c392a1de7bc3f6641f5.zip
hrtimer: remove hrtimer_clock_base::reprogram()
hrtimer_clock_base::reprogram() also appears to never have been used, so remove it. Signed-off-by: Mark McLoughlin <markmc@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/hrtimer.h')
-rw-r--r--include/linux/hrtimer.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h
index 1b079bd29c35..68b0196d8696 100644
--- a/include/linux/hrtimer.h
+++ b/include/linux/hrtimer.h
@@ -147,7 +147,6 @@ struct hrtimer_sleeper {
* @get_time: function to retrieve the current time of the clock
* @softirq_time: the time when running the hrtimer queue in the softirq
* @offset: offset of this clock to the monotonic base
- * @reprogram: function to reprogram the timer event
*/
struct hrtimer_clock_base {
struct hrtimer_cpu_base *cpu_base;
@@ -159,9 +158,6 @@ struct hrtimer_clock_base {
ktime_t softirq_time;
#ifdef CONFIG_HIGH_RES_TIMERS
ktime_t offset;
- int (*reprogram)(struct hrtimer *t,
- struct hrtimer_clock_base *b,
- ktime_t n);
#endif
};