diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-02-16 04:27:37 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-16 11:13:57 -0500 |
commit | c66699a749eb0d84c6ebc3aac659e9f71d1aba14 (patch) | |
tree | 0f358882852f57203bb894101038d36a0c9649f8 /arch/arm/mach-pxa | |
parent | 73b08d2aa4245806ef1bdd48463e9a0b045c62cf (diff) |
[PATCH] clocksource: fixup is_continous changes on ARM
Fixup the is_contionous replacement by a flag field.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: Russell King <rmk@arm.linux.org.uk>
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 'arch/arm/mach-pxa')
-rw-r--r-- | arch/arm/mach-pxa/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/time.c b/arch/arm/mach-pxa/time.c index ee2beb400414..fc3b82a740a0 100644 --- a/arch/arm/mach-pxa/time.c +++ b/arch/arm/mach-pxa/time.c | |||
@@ -112,7 +112,7 @@ static struct clocksource clocksource_pxa = { | |||
112 | .read = pxa_get_cycles, | 112 | .read = pxa_get_cycles, |
113 | .mask = CLOCKSOURCE_MASK(32), | 113 | .mask = CLOCKSOURCE_MASK(32), |
114 | .shift = 20, | 114 | .shift = 20, |
115 | .is_continuous = 1, | 115 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
116 | }; | 116 | }; |
117 | 117 | ||
118 | static void __init pxa_timer_init(void) | 118 | static void __init pxa_timer_init(void) |