diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-12-13 13:20:35 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-12-22 22:44:39 +0000 |
commit | 509e1f0fd7627a5b8d2da9e8c2b4ab1c2743c5f6 (patch) | |
tree | 71bd04ef9f65aa70541f4d70e96d562bb8dfaf77 /arch/arm/plat-mxc/epit.c | |
parent | d28b116b9239b603f790a5ed6f0c5fe329561b49 (diff) | |
download | blackbird-obmc-linux-509e1f0fd7627a5b8d2da9e8c2b4ab1c2743c5f6.tar.gz blackbird-obmc-linux-509e1f0fd7627a5b8d2da9e8c2b4ab1c2743c5f6.zip |
ARM: mxc: update clock source registration
In d7e81c2 (clocksource: Add clocksource_register_hz/khz interface) new
interfaces were added which simplify (and optimize) the selection of the
divisor shift/mult constants. Switch over to using this new interface.
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/plat-mxc/epit.c')
-rw-r--r-- | arch/arm/plat-mxc/epit.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/arm/plat-mxc/epit.c b/arch/arm/plat-mxc/epit.c index ee9582f4972e..d69d343ff61f 100644 --- a/arch/arm/plat-mxc/epit.c +++ b/arch/arm/plat-mxc/epit.c @@ -93,7 +93,6 @@ static struct clocksource clocksource_epit = { .rating = 200, .read = epit_read, .mask = CLOCKSOURCE_MASK(32), - .shift = 20, .flags = CLOCK_SOURCE_IS_CONTINUOUS, }; @@ -101,9 +100,7 @@ static int __init epit_clocksource_init(struct clk *timer_clk) { unsigned int c = clk_get_rate(timer_clk); - clocksource_epit.mult = clocksource_hz2mult(c, - clocksource_epit.shift); - clocksource_register(&clocksource_epit); + clocksource_register_hz(&clocksource_epit, c); return 0; } |