All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Staging: android: ram_console: Use resource_size function
@ 2012-01-22 17:34 Thomas Meyer
  0 siblings, 0 replies; only message in thread
From: Thomas Meyer @ 2012-01-22 17:34 UTC (permalink / raw)
  To: gregkh, devel, linux-kernel

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/drivers/staging/android/ram_console.c b/drivers/staging/android/ram_console.c
--- a/drivers/staging/android/ram_console.c 2012-01-10 08:19:54.746321665 +0100
+++ b/drivers/staging/android/ram_console.c 2012-01-22 12:45:22.929170341 +0100
@@ -351,7 +351,7 @@ static int ram_console_driver_probe(stru
 		       "%lx\n", res, pdev->num_resources, res ? res->flags : 0);
 		return -ENXIO;
 	}
-	buffer_size = res->end - res->start + 1;
+	buffer_size = resource_size(res);
 	start = res->start;
 	printk(KERN_INFO "ram_console: got buffer at %zx, size %zx\n",
 	       start, buffer_size);



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-01-22 19:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-22 17:34 [PATCH] Staging: android: ram_console: Use resource_size function Thomas Meyer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.