[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20100322121034.GI21571@bicker>
Date: Mon, 22 Mar 2010 15:10:35 +0300
From: Dan Carpenter <error27@...il.com>
To: Jun Nie <njun@...vell.com>
Cc: Eric Miao <eric.y.miao@...il.com>,
Lennert Buytenhek <buytenh@...vell.com>,
Krzysztof Helt <krzysztof.h1@...pl>,
Kevin Liu <kliu5@...vell.com>, linux-kernel@...r.kernel.org,
kernel-janitors@...r.kernel.org
Subject: [patch] pxa168fb: use resource_size()
The size calculation is not correct. It should be end - start + 1.
Use resource_size() to caculate it.
Signed-off-by: Dan Carpenter <error27@...il.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 majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists