aboutsummaryrefslogtreecommitdiffstats
path: root/arch/hexagon/kernel/time.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/hexagon/kernel/time.c')
-rw-r--r--arch/hexagon/kernel/time.c6
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