diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2010-12-11 06:34:34 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-12-11 06:34:34 -0500 |
commit | 45f74264e18449cf3c93cccaf098ee6e9524ab78 (patch) | |
tree | d5208559825ea479dce08df7658f0590aabea43b /lib/timerqueue.c | |
parent | b007c389d3e09b823eccda1503390fa2a9adca0d (diff) |
timerqueue: Make timerqueue_getnext() static inline
No point in calling a function just to dereference a pointer.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'lib/timerqueue.c')
-rw-r--r-- | lib/timerqueue.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/timerqueue.c b/lib/timerqueue.c index 444b0934af92..e3a1050e6820 100644 --- a/lib/timerqueue.c +++ b/lib/timerqueue.c | |||
@@ -85,20 +85,6 @@ void timerqueue_del(struct timerqueue_head *head, struct timerqueue_node *node) | |||
85 | EXPORT_SYMBOL_GPL(timerqueue_del); | 85 | EXPORT_SYMBOL_GPL(timerqueue_del); |
86 | 86 | ||
87 | /** | 87 | /** |
88 | * timerqueue_getnext - Returns the timer with the earlies expiration time | ||
89 | * | ||
90 | * @head: head of timerqueue | ||
91 | * | ||
92 | * Returns a pointer to the timer node that has the | ||
93 | * earliest expiration time. | ||
94 | */ | ||
95 | struct timerqueue_node *timerqueue_getnext(struct timerqueue_head *head) | ||
96 | { | ||
97 | return head->next; | ||
98 | } | ||
99 | EXPORT_SYMBOL_GPL(timerqueue_getnext); | ||
100 | |||
101 | /** | ||
102 | * timerqueue_iterate_next - Returns the timer after the provided timer | 88 | * timerqueue_iterate_next - Returns the timer after the provided timer |
103 | * | 89 | * |
104 | * @node: Pointer to a timer. | 90 | * @node: Pointer to a timer. |