diff options
-rw-r--r-- | drivers/spi/spi_s3c24xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/spi_s3c24xx.c b/drivers/spi/spi_s3c24xx.c index 0be4da0917e0..705841fb4ca0 100644 --- a/drivers/spi/spi_s3c24xx.c +++ b/drivers/spi/spi_s3c24xx.c | |||
@@ -299,7 +299,7 @@ static int __init s3c24xx_spi_probe(struct platform_device *pdev) | |||
299 | goto err_no_iores; | 299 | goto err_no_iores; |
300 | } | 300 | } |
301 | 301 | ||
302 | hw->ioarea = request_mem_region(res->start, (res->end - res->start)+1, | 302 | hw->ioarea = request_mem_region(res->start, resource_size(res), |
303 | pdev->name); | 303 | pdev->name); |
304 | 304 | ||
305 | if (hw->ioarea == NULL) { | 305 | if (hw->ioarea == NULL) { |
@@ -308,7 +308,7 @@ static int __init s3c24xx_spi_probe(struct platform_device *pdev) | |||
308 | goto err_no_iores; | 308 | goto err_no_iores; |
309 | } | 309 | } |
310 | 310 | ||
311 | hw->regs = ioremap(res->start, (res->end - res->start)+1); | 311 | hw->regs = ioremap(res->start, resource_size(res)); |
312 | if (hw->regs == NULL) { | 312 | if (hw->regs == NULL) { |
313 | dev_err(&pdev->dev, "Cannot map IO\n"); | 313 | dev_err(&pdev->dev, "Cannot map IO\n"); |
314 | err = -ENXIO; | 314 | err = -ENXIO; |