Commit c66699a7 authored by Thomas Gleixner's avatar Thomas Gleixner Committed by Linus Torvalds

[PATCH] clocksource: fixup is_continous changes on ARM

Fixup the is_contionous replacement by a flag field.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarIngo 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: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 73b08d2a
...@@ -87,7 +87,7 @@ static struct clocksource clocksource_imx = { ...@@ -87,7 +87,7 @@ static struct clocksource clocksource_imx = {
.read = imx_get_cycles, .read = imx_get_cycles,
.mask = 0xFFFFFFFF, .mask = 0xFFFFFFFF,
.shift = 20, .shift = 20,
.is_continuous = 1, .flags = CLOCK_SOURCE_IS_CONTINUOUS,
}; };
static int __init imx_clocksource_init(void) static int __init imx_clocksource_init(void)
......
...@@ -395,7 +395,7 @@ static struct clocksource clocksource_ixp4xx = { ...@@ -395,7 +395,7 @@ static struct clocksource clocksource_ixp4xx = {
.read = ixp4xx_get_cycles, .read = ixp4xx_get_cycles,
.mask = CLOCKSOURCE_MASK(32), .mask = CLOCKSOURCE_MASK(32),
.shift = 20, .shift = 20,
.is_continuous = 1, .flags = CLOCK_SOURCE_IS_CONTINUOUS,
}; };
unsigned long ixp4xx_timer_freq = FREQ; unsigned long ixp4xx_timer_freq = FREQ;
......
...@@ -62,7 +62,7 @@ static struct clocksource clocksource_netx = { ...@@ -62,7 +62,7 @@ static struct clocksource clocksource_netx = {
.read = netx_get_cycles, .read = netx_get_cycles,
.mask = CLOCKSOURCE_MASK(32), .mask = CLOCKSOURCE_MASK(32),
.shift = 20, .shift = 20,
.is_continuous = 1, .flags = CLOCK_SOURCE_IS_CONTINUOUS,
}; };
/* /*
......
...@@ -112,7 +112,7 @@ static struct clocksource clocksource_pxa = { ...@@ -112,7 +112,7 @@ static struct clocksource clocksource_pxa = {
.read = pxa_get_cycles, .read = pxa_get_cycles,
.mask = CLOCKSOURCE_MASK(32), .mask = CLOCKSOURCE_MASK(32),
.shift = 20, .shift = 20,
.is_continuous = 1, .flags = CLOCK_SOURCE_IS_CONTINUOUS,
}; };
static void __init pxa_timer_init(void) static void __init pxa_timer_init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment