aboutsummaryrefslogtreecommitdiffstats
path: root/lib/timerqueue.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix common misspellingsLucas De Marchi2011-03-311-1/+1
| | | | | | Fixes generated by 'codespell' and manually reviewed. Signed-off-by: Lucas De Marchi <[email protected]>
* timerqueue: Make timerqueue_getnext() static inlineThomas Gleixner2010-12-111-14/+0
| | | | | | | No point in calling a function just to dereference a pointer. Signed-off-by: Thomas Gleixner <[email protected]> Cc: John Stultz <[email protected]>
* timers: Fixup allmodconfig build issueJohn Stultz2010-12-101-2/+5
| | | | | | | | | | | | Adds missed EXPORT_SYMBOL lines that cause the following build failures with allmodconfig: ERROR: "timerqueue_add" [drivers/rtc/rtc-core.ko] undefined! ERROR: "timerqueue_getnext" [drivers/rtc/rtc-core.ko] undefined! ERROR: "timerqueue_del" [drivers/rtc/rtc-core.ko] undefined! Reported-by: Ingo Molnar <[email protected]> Reported-by: Thomas Gleixner <[email protected]> Signed-off-by: John Stultz <[email protected]>
* timers: Rename timerlist infrastructure to timerqueueJohn Stultz2010-12-101-0/+118
Thomas pointed out a namespace collision between the new timerlist infrastructure I introduced and the existing timer_list.c So to avoid confusion, I've renamed the timerlist infrastructure to timerqueue. Reported-by: Thomas Gleixner <[email protected]> Signed-off-by: John Stultz <[email protected]>