
hartleys at visionengravers
Nov 23, 2009, 10:08 AM
Post #1 of 1
(95 views)
Permalink
|
|
drivers/gpio/vr41xx_giu.c: use resource_size()
|
|
Use resource_size() for ioremap. Signed-off-by: H Hartley Sweeten <hsweeten [at] visionengravers> Cc: Yoichi Yuasa <yuasa [at] linux-mips> --- diff --git a/drivers/gpio/vr41xx_giu.c b/drivers/gpio/vr41xx_giu.c index b16c9a8..956f911 100644 --- a/drivers/gpio/vr41xx_giu.c +++ b/drivers/gpio/vr41xx_giu.c @@ -518,7 +518,7 @@ static int __devinit giu_probe(struct platform_device *pdev) if (!res) return -EBUSY; - giu_base = ioremap(res->start, res->end - res->start + 1); + giu_base = ioremap(res->start, resource_size(res)); if (!giu_base) return -ENOMEM; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo [at] vger More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|