Commit e979b9de authored by Ben Dooks's avatar Ben Dooks Committed by James Toy

Change the use of (res->end - res->start) to use resource_size() to

get the size of the resource.

Signed-off-by; Ben Dooks <ben@simtec.co.uk>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 6a01cd34
...@@ -299,7 +299,7 @@ static int __init s3c24xx_spi_probe(struct platform_device *pdev) ...@@ -299,7 +299,7 @@ static int __init s3c24xx_spi_probe(struct platform_device *pdev)
goto err_no_iores; goto err_no_iores;
} }
hw->ioarea = request_mem_region(res->start, (res->end - res->start)+1, hw->ioarea = request_mem_region(res->start, resource_size(res),
pdev->name); pdev->name);
if (hw->ioarea == NULL) { if (hw->ioarea == NULL) {
...@@ -308,7 +308,7 @@ static int __init s3c24xx_spi_probe(struct platform_device *pdev) ...@@ -308,7 +308,7 @@ static int __init s3c24xx_spi_probe(struct platform_device *pdev)
goto err_no_iores; goto err_no_iores;
} }
hw->regs = ioremap(res->start, (res->end - res->start)+1); hw->regs = ioremap(res->start, resource_size(res));
if (hw->regs == NULL) { if (hw->regs == NULL) {
dev_err(&pdev->dev, "Cannot map IO\n"); dev_err(&pdev->dev, "Cannot map IO\n");
err = -ENXIO; err = -ENXIO;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment