diff options
author | axel lin <axel.lin@gmail.com> | 2011-01-29 04:35:45 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-03-22 03:07:35 -0400 |
commit | e0998eab678233fae7dff7b92db08ad0f01acf91 (patch) | |
tree | 7d2fdc018b8d7ca3f073657bbbfffab9b4711328 /drivers/video | |
parent | 56fb22f7ca11ba5f04c297b7f7aa758ac8dbb2ce (diff) |
video: sh7760fb: use resource_size()
The size calculation is done incorrectly in request_mem_region because
it should include both the start and end (end - start + 1).
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/sh7760fb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/sh7760fb.c b/drivers/video/sh7760fb.c index bea38fce2470..8fe19582c460 100644 --- a/drivers/video/sh7760fb.c +++ b/drivers/video/sh7760fb.c | |||
@@ -459,14 +459,14 @@ static int __devinit sh7760fb_probe(struct platform_device *pdev) | |||
459 | } | 459 | } |
460 | 460 | ||
461 | par->ioarea = request_mem_region(res->start, | 461 | par->ioarea = request_mem_region(res->start, |
462 | (res->end - res->start), pdev->name); | 462 | resource_size(res), pdev->name); |
463 | if (!par->ioarea) { | 463 | if (!par->ioarea) { |
464 | dev_err(&pdev->dev, "mmio area busy\n"); | 464 | dev_err(&pdev->dev, "mmio area busy\n"); |
465 | ret = -EBUSY; | 465 | ret = -EBUSY; |
466 | goto out_fb; | 466 | goto out_fb; |
467 | } | 467 | } |
468 | 468 | ||
469 | par->base = ioremap_nocache(res->start, res->end - res->start + 1); | 469 | par->base = ioremap_nocache(res->start, resource_size(res)); |
470 | if (!par->base) { | 470 | if (!par->base) { |
471 | dev_err(&pdev->dev, "cannot remap\n"); | 471 | dev_err(&pdev->dev, "cannot remap\n"); |
472 | ret = -ENODEV; | 472 | ret = -ENODEV; |