diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-01-30 07:30:02 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:30:02 -0500 |
commit | 4713e22ce81eb8b3353e16435362eb3d0ec95640 (patch) | |
tree | 6f96151bd9b182d6b9d706d3ad3b4fe8c99e7f7e /include/linux/clocksource.h | |
parent | 316da3b3fc8efa9a5d2c99e0d449f01ff38c6aba (diff) |
clocksource: add unregister function to disable unusable clocksources
On x86 the PIT might become an unusable clocksource. Add an unregister
function to provide a possibilty to remove the PIT from the list of
available clock sources.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/clocksource.h')
-rw-r--r-- | include/linux/clocksource.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h index 07b42153de24..85778a4b1209 100644 --- a/include/linux/clocksource.h +++ b/include/linux/clocksource.h | |||
@@ -215,6 +215,7 @@ static inline void clocksource_calculate_interval(struct clocksource *c, | |||
215 | 215 | ||
216 | /* used to install a new clocksource */ | 216 | /* used to install a new clocksource */ |
217 | extern int clocksource_register(struct clocksource*); | 217 | extern int clocksource_register(struct clocksource*); |
218 | extern void clocksource_unregister(struct clocksource*); | ||
218 | extern struct clocksource* clocksource_get_next(void); | 219 | extern struct clocksource* clocksource_get_next(void); |
219 | extern void clocksource_change_rating(struct clocksource *cs, int rating); | 220 | extern void clocksource_change_rating(struct clocksource *cs, int rating); |
220 | extern void clocksource_resume(void); | 221 | extern void clocksource_resume(void); |