diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-02-16 04:27:36 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-16 11:13:57 -0500 |
commit | 73b08d2aa4245806ef1bdd48463e9a0b045c62cf (patch) | |
tree | 1cd5b3a7b9f889bb6ff1e7fc6c9a95751faad4d7 /kernel/timer.c | |
parent | 95492e4646e5de8b43d9a7908d6177fb737b61f0 (diff) |
[PATCH] clocksource: replace is_continuous by a flag field
Using a flag filed allows to encode more than one information into a variable.
Preparatory patch for the generic clocksource verification.
[mingo@elte.hu: convert vmitime.c to the new clocksource flag]
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: john stultz <johnstul@us.ibm.com>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/timer.c')
-rw-r--r-- | kernel/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/timer.c b/kernel/timer.c index 8f4bf1e6a3ed..1144ff2c2ea3 100644 --- a/kernel/timer.c +++ b/kernel/timer.c | |||
@@ -871,7 +871,7 @@ int timekeeping_is_continuous(void) | |||
871 | do { | 871 | do { |
872 | seq = read_seqbegin(&xtime_lock); | 872 | seq = read_seqbegin(&xtime_lock); |
873 | 873 | ||
874 | ret = clock->is_continuous; | 874 | ret = clock->flags & CLOCK_SOURCE_IS_CONTINUOUS; |
875 | 875 | ||
876 | } while (read_seqretry(&xtime_lock, seq)); | 876 | } while (read_seqretry(&xtime_lock, seq)); |
877 | 877 | ||