diff options
author | john stultz <johnstul@us.ibm.com> | 2006-06-26 03:25:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 12:58:21 -0400 |
commit | a275254975a29c51929ee175b92ac471ac2a0043 (patch) | |
tree | 42ec41bf74c0c601f05ed12ff674539f4bf6f505 /include/linux/clocksource.h | |
parent | 5d0cf410e94b1f1ff852c3f210d22cc6c5a27ffa (diff) |
[PATCH] time: rename clocksource functions
As suggested by Roman Zippel, change clocksource functions to use
clocksource_xyz rather then xyz_clocksource to avoid polluting the
namespace.
Signed-off-by: John Stultz <johnstul@us.ibm.com>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/clocksource.h')
-rw-r--r-- | include/linux/clocksource.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h index c4739c4e3039..5f4a7f72f3ee 100644 --- a/include/linux/clocksource.h +++ b/include/linux/clocksource.h | |||
@@ -118,12 +118,12 @@ static inline u32 clocksource_hz2mult(u32 hz, u32 shift_constant) | |||
118 | } | 118 | } |
119 | 119 | ||
120 | /** | 120 | /** |
121 | * read_clocksource: - Access the clocksource's current cycle value | 121 | * clocksource_read: - Access the clocksource's current cycle value |
122 | * @cs: pointer to clocksource being read | 122 | * @cs: pointer to clocksource being read |
123 | * | 123 | * |
124 | * Uses the clocksource to return the current cycle_t value | 124 | * Uses the clocksource to return the current cycle_t value |
125 | */ | 125 | */ |
126 | static inline cycle_t read_clocksource(struct clocksource *cs) | 126 | static inline cycle_t clocksource_read(struct clocksource *cs) |
127 | { | 127 | { |
128 | return cs->read(); | 128 | return cs->read(); |
129 | } | 129 | } |
@@ -145,7 +145,7 @@ static inline s64 cyc2ns(struct clocksource *cs, cycle_t cycles) | |||
145 | } | 145 | } |
146 | 146 | ||
147 | /** | 147 | /** |
148 | * calculate_clocksource_interval - Calculates a clocksource interval struct | 148 | * clocksource_calculate_interval - Calculates a clocksource interval struct |
149 | * | 149 | * |
150 | * @c: Pointer to clocksource. | 150 | * @c: Pointer to clocksource. |
151 | * @length_nsec: Desired interval length in nanoseconds. | 151 | * @length_nsec: Desired interval length in nanoseconds. |
@@ -155,7 +155,7 @@ static inline s64 cyc2ns(struct clocksource *cs, cycle_t cycles) | |||
155 | * | 155 | * |
156 | * Unless you're the timekeeping code, you should not be using this! | 156 | * Unless you're the timekeeping code, you should not be using this! |
157 | */ | 157 | */ |
158 | static inline void calculate_clocksource_interval(struct clocksource *c, | 158 | static inline void clocksource_calculate_interval(struct clocksource *c, |
159 | unsigned long length_nsec) | 159 | unsigned long length_nsec) |
160 | { | 160 | { |
161 | u64 tmp; | 161 | u64 tmp; |
@@ -271,8 +271,8 @@ static inline s64 make_ntp_adj(struct clocksource *clock, | |||
271 | 271 | ||
272 | 272 | ||
273 | /* used to install a new clocksource */ | 273 | /* used to install a new clocksource */ |
274 | int register_clocksource(struct clocksource*); | 274 | int clocksource_register(struct clocksource*); |
275 | void reselect_clocksource(void); | 275 | void clocksource_reselect(void); |
276 | struct clocksource* get_next_clocksource(void); | 276 | struct clocksource* clocksource_get_next(void); |
277 | 277 | ||
278 | #endif /* _LINUX_CLOCKSOURCE_H */ | 278 | #endif /* _LINUX_CLOCKSOURCE_H */ |