diff options
author | Thomas Meyer <thomas@m3y3r.de> | 2011-11-08 13:49:30 -0500 |
---|---|---|
committer | Richard Kuo <rkuo@codeaurora.org> | 2012-05-22 19:40:45 -0400 |
commit | 3c0f13bcdd4491d33f866e0ebd9286556ef13d8d (patch) | |
tree | 5b96aa87f874a15d7129c674e37808a03ad11296 | |
parent | f6a26ae7699416d86bea8cb68ce413571e9cab3c (diff) |
Hexagon: Use resource_size function
Use resource_size function on resource object
instead of explicit computation.
The semantic patch that makes this change is available
in scripts/coccinelle/api/resource_size.cocci.
More information about semantic patching is available at
http://coccinelle.lip6.fr/
Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
-rw-r--r-- | arch/hexagon/kernel/time.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/hexagon/kernel/time.c b/arch/hexagon/kernel/time.c index 5d9b33b67935..36ba64185711 100644 --- a/arch/hexagon/kernel/time.c +++ b/arch/hexagon/kernel/time.c | |||
@@ -201,12 +201,10 @@ void __init time_init_deferred(void) | |||
201 | resource = rtos_timer_device.resource; | 201 | resource = rtos_timer_device.resource; |
202 | 202 | ||
203 | /* ioremap here means this has to run later, after paging init */ | 203 | /* ioremap here means this has to run later, after paging init */ |
204 | rtos_timer = ioremap(resource->start, resource->end | 204 | rtos_timer = ioremap(resource->start, resource_size(resource)); |
205 | - resource->start + 1); | ||
206 | 205 | ||
207 | if (!rtos_timer) { | 206 | if (!rtos_timer) { |
208 | release_mem_region(resource->start, resource->end | 207 | release_mem_region(resource->start, resource_size(resource)); |
209 | - resource->start + 1); | ||
210 | } | 208 | } |
211 | clocksource_register_khz(&hexagon_clocksource, pcycle_freq_mhz * 1000); | 209 | clocksource_register_khz(&hexagon_clocksource, pcycle_freq_mhz * 1000); |
212 | 210 | ||