aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/timerqueue.c14
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)
85EXPORT_SYMBOL_GPL(timerqueue_del); 85EXPORT_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 */
95struct timerqueue_node *timerqueue_getnext(struct timerqueue_head *head)
96{
97 return head->next;
98}
99EXPORT_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.