diff options
| author | H Hartley Sweeten <[email protected]> | 2009-10-16 18:19:01 -0400 |
|---|---|---|
| committer | Thomas Gleixner <[email protected]> | 2009-11-18 12:31:48 +0100 |
| commit | 8e1a928a2ed7e8d5cad97c8e985294b4caedd168 (patch) | |
| tree | 0bd5887c4eb7aa892488caf6f1065e50d37e8e6c | |
| parent | 070e5c3f9989a72076e83fdd5ede3f0f3eb17264 (diff) | |
clockevents: Add missing include to pacify sparse
Include "tick-internal.h" in order to pick up the extern function
prototype for clockevents_shutdown(). This quiets the following sparse
build noise:
warning: symbol 'clockevents_shutdown' was not declared. Should it be static?
Signed-off-by: H Hartley Sweeten <[email protected]>
LKML-Reference: <[email protected]>
Reviewed-by: Yong Zhang <[email protected]>
Cc: [email protected]
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
| -rw-r--r-- | kernel/time/clockevents.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/time/clockevents.c b/kernel/time/clockevents.c index 05e8aeedcdf3..20a8920029ee 100644 --- a/kernel/time/clockevents.c +++ b/kernel/time/clockevents.c @@ -20,6 +20,8 @@ #include <linux/sysdev.h> #include <linux/tick.h> +#include "tick-internal.h" + /* The registered clock event devices */ static LIST_HEAD(clockevent_devices); static LIST_HEAD(clockevents_released); |