aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/s3c2410.c
diff options
context:
space:
mode:
authorH Hartley Sweeten <hartleys@visionengravers.com>2009-12-14 16:56:22 -0500
committerDavid Woodhouse <David.Woodhouse@intel.com>2009-12-31 20:47:22 +0000
commitfc161c4e8ec9b12d42b10d510a9de8562ea3afac (patch)
tree5889d7b88b48aeef7cace5814543793a2f2dff43 /drivers/mtd/nand/s3c2410.c
parentmtd: orion_nand.c: add error handling and use resource_size() (diff)
downloadlinux-dev-fc161c4e8ec9b12d42b10d510a9de8562ea3afac.tar.xz
linux-dev-fc161c4e8ec9b12d42b10d510a9de8562ea3afac.zip
mtd: drivers/mtd/nand/s3c2410.c: use resource_size()
Use resource_size(). Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ben Dooks <ben-linux@fluff.org> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/nand/s3c2410.c')
-rw-r--r--drivers/mtd/nand/s3c2410.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c
index fa6e9c7fe511..c41ad2285c63 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);