mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
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>
This commit is contained in:
parent
f6a26ae769
commit
3c0f13bcdd
1 changed files with 2 additions and 4 deletions
|
@ -201,12 +201,10 @@ void __init time_init_deferred(void)
|
||||||
resource = rtos_timer_device.resource;
|
resource = rtos_timer_device.resource;
|
||||||
|
|
||||||
/* ioremap here means this has to run later, after paging init */
|
/* ioremap here means this has to run later, after paging init */
|
||||||
rtos_timer = ioremap(resource->start, resource->end
|
rtos_timer = ioremap(resource->start, resource_size(resource));
|
||||||
- resource->start + 1);
|
|
||||||
|
|
||||||
if (!rtos_timer) {
|
if (!rtos_timer) {
|
||||||
release_mem_region(resource->start, resource->end
|
release_mem_region(resource->start, resource_size(resource));
|
||||||
- resource->start + 1);
|
|
||||||
}
|
}
|
||||||
clocksource_register_khz(&hexagon_clocksource, pcycle_freq_mhz * 1000);
|
clocksource_register_khz(&hexagon_clocksource, pcycle_freq_mhz * 1000);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue