[PATCH] drivers/mtd/nand/s3c2410.c: use resource_size()
H Hartley Sweeten
hartleys at visionengravers.com
Mon Dec 14 16:56:22 EST 2009
Use resource_size().
Signed-off-by: H Hartley Sweeten <hsweeten at visionengravers.com>
Cc: David Woodhouse <dwmw2 at infradead.org>
Cc: Ben Dooks <ben-linux at fluff.org>
---
diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c
index 68b5b3a..3b5a8cc 100644
--- a/drivers/mtd/nand/s3c2410.c
+++ b/drivers/mtd/nand/s3c2410.c
@@ -957,7 +957,7 @@ static int s3c24xx_nand_probe(struct platform_device *pdev)
/* currently we assume we have the one resource */
res = pdev->resource;
- size = res->end - res->start + 1;
+ size = resource_size(res);
info->area = request_mem_region(res->start, size, pdev->name);
More information about the linux-mtd
mailing list