diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2009-07-22 13:40:14 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-07-22 17:12:32 +0200 |
commit | fbd90375d7531927d312766b548376d909811b4d (patch) | |
tree | 3eff386f9e3d15e8f890c2a1a1cf12e100b6ab0c /kernel/hrtimer.c | |
parent | a40f262cc21fbfd781bbddcc40b16b83a75f5f34 (diff) |
hrtimer: Remove cb_entry from struct hrtimer
It's unused, remove it.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
LKML-Reference: <new-submission>
Diffstat (limited to 'kernel/hrtimer.c')
-rw-r--r-- | kernel/hrtimer.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c index 43d151f185b..052a0f53e4e 100644 --- a/kernel/hrtimer.c +++ b/kernel/hrtimer.c @@ -1092,7 +1092,6 @@ static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id, clock_id = CLOCK_MONOTONIC; timer->base = &cpu_base->clock_base[clock_id]; - INIT_LIST_HEAD(&timer->cb_entry); hrtimer_init_timer_hres(timer); #ifdef CONFIG_TIMER_STATS |