public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Hexagon: Use resource_size function
@ 2011-11-08 18:49 Thomas Meyer
  2011-11-09  1:02 ` David Brown
  2011-11-09  5:33 ` rkuo
  0 siblings, 2 replies; 5+ messages in thread
From: Thomas Meyer @ 2011-11-08 18:49 UTC (permalink / raw)
  To: Richard Kuo, Arnd Bergmann, linux-hexagon, linux-kernel

From: Thomas Meyer <thomas@m3y3r.de>

 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>
---

diff -u -p a/arch/hexagon/kernel/time.c b/arch/hexagon/kernel/time.c
--- a/arch/hexagon/kernel/time.c 2011-11-07 19:37:21.719553477 +0100
+++ b/arch/hexagon/kernel/time.c 2011-11-08 12:21:17.722176538 +0100
@@ -200,12 +200,10 @@ void __init time_init_deferred(void)
 		resource = rtos_timer_device.resource;
 
 	/*  ioremap here means this has to run later, after paging init  */
-	rtos_timer = ioremap(resource->start, resource->end
-		- resource->start + 1);
+	rtos_timer = ioremap(resource->start, resource_size(resource));
 
 	if (!rtos_timer) {
-		release_mem_region(resource->start, resource->end
-			- resource->start + 1);
+		release_mem_region(resource->start, resource_size(resource));
 	}
 	clocksource_register_khz(&hexagon_clocksource, pcycle_freq_mhz * 1000);
 



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-11-10 15:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-08 18:49 [PATCH] Hexagon: Use resource_size function Thomas Meyer
2011-11-09  1:02 ` David Brown
2011-11-10  8:39   ` Thomas Meyer
2011-11-10 15:28     ` David Brown
2011-11-09  5:33 ` rkuo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox