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 /kernel/time/jiffies.c | |
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 'kernel/time/jiffies.c')
-rw-r--r-- | kernel/time/jiffies.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/jiffies.c b/kernel/time/jiffies.c index 1fe8376e717b..126bb30c4afe 100644 --- a/kernel/time/jiffies.c +++ b/kernel/time/jiffies.c | |||
@@ -67,7 +67,7 @@ struct clocksource clocksource_jiffies = { | |||
67 | 67 | ||
68 | static int __init init_jiffies_clocksource(void) | 68 | static int __init init_jiffies_clocksource(void) |
69 | { | 69 | { |
70 | return register_clocksource(&clocksource_jiffies); | 70 | return clocksource_register(&clocksource_jiffies); |
71 | } | 71 | } |
72 | 72 | ||
73 | module_init(init_jiffies_clocksource); | 73 | module_init(init_jiffies_clocksource); |