| Submitter | hartleys |
|---|---|
| Date | Dec. 14, 2009, 9:56 p.m. |
| Message ID | <BD79186B4FD85F4B8E60E381CAEE19090200EA66@mi8nycmail19.Mi8.com> |
| Download | mbox | patch |
| Permalink | /patch/41151/ |
| State | New |
| Headers | show |
Comments
Patch
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);
Use resource_size(). Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: David Woodhouse <dwmw2@infradead.org> Cc: Ben Dooks <ben-linux@fluff.org> ---