aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/hrtimer.h
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2008-09-19 08:13:48 -0400
committerIngo Molnar <mingo@elte.hu>2008-09-22 07:52:42 -0400
commitb91c4996df56fcd201f85c392a1de7bc3f6641f5 (patch)
tree8bf1395a75d035d8f01eda8aefaee5c0716ee03f /include/linux/hrtimer.h
parentd7cfb60c5cf904ecf1e0ae23ec178175b86f0d4a (diff)
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 {
147 * @get_time: function to retrieve the current time of the clock 147 * @get_time: function to retrieve the current time of the clock
148 * @softirq_time: the time when running the hrtimer queue in the softirq 148 * @softirq_time: the time when running the hrtimer queue in the softirq
149 * @offset: offset of this clock to the monotonic base 149 * @offset: offset of this clock to the monotonic base
150 * @reprogram: function to reprogram the timer event
151 */ 150 */
152struct hrtimer_clock_base { 151struct hrtimer_clock_base {
153 struct hrtimer_cpu_base *cpu_base; 152 struct hrtimer_cpu_base *cpu_base;
@@ -159,9 +158,6 @@ struct hrtimer_clock_base {
159 ktime_t softirq_time; 158 ktime_t softirq_time;
160#ifdef CONFIG_HIGH_RES_TIMERS 159#ifdef CONFIG_HIGH_RES_TIMERS
161 ktime_t offset; 160 ktime_t offset;
162 int (*reprogram)(struct hrtimer *t,
163 struct hrtimer_clock_base *b,
164 ktime_t n);
165#endif 161#endif
166}; 162};
167 163