Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[patch] pxa168fb: use resource_size()

0 views
Skip to first unread message

Dan Carpenter

unread,
Mar 22, 2010, 8:20:02 AM3/22/10
to
The size calculation is not correct. It should be end - start + 1.
Use resource_size() to caculate it.

Signed-off-by: Dan Carpenter <err...@gmail.com>
---
This was found by a static checker and I don't have the hardware to
test it. Please review carefully.

diff --git a/drivers/video/pxa168fb.c b/drivers/video/pxa168fb.c
index 75285d3..c91a7f7 100644
--- a/drivers/video/pxa168fb.c
+++ b/drivers/video/pxa168fb.c
@@ -668,7 +668,7 @@ static int __init pxa168fb_probe(struct platform_device *pdev)
/*
* Map LCD controller registers.
*/
- fbi->reg_base = ioremap_nocache(res->start, res->end - res->start);
+ fbi->reg_base = ioremap_nocache(res->start, resource_size(res));
if (fbi->reg_base == NULL) {
ret = -ENOMEM;
goto failed;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majo...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

Eric Miao

unread,
Mar 22, 2010, 8:40:03 AM3/22/10
to
On Mon, Mar 22, 2010 at 8:10 PM, Dan Carpenter <err...@gmail.com> wrote:
> The size calculation is not correct.  It should be end - start + 1.
> Use resource_size() to caculate it.
>
> Signed-off-by: Dan Carpenter <err...@gmail.com>

Applied to 'fix'.

0 new messages