aboutsummaryrefslogtreecommitdiff
path: root/drivers/gpio/gpio-vr41xx.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-06-10 18:16:15 -0700
committerGrant Likely <grant.likely@secretlab.ca>2011-06-10 23:37:10 -0600
commit27810c5e7f8f2ddf036c16b5e40fd22abdc041f9 (patch)
tree94845a97ebcecff55dbcdafb27c8e928ae8d3a66 /drivers/gpio/gpio-vr41xx.c
parentb57e3c2692b04ac0b2f14bb94c63291fad1d7309 (diff)
gpio/vr41xx: Convert use of struct resource to resource_size(ptr)
Remove miscellaneous use of direct calculation by using resource_size(). Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/gpio/gpio-vr41xx.c')
-rw-r--r--drivers/gpio/gpio-vr41xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-vr41xx.c b/drivers/gpio/gpio-vr41xx.c
index a365be040b3..98723cb9ac6 100644
--- a/drivers/gpio/gpio-vr41xx.c
+++ b/drivers/gpio/gpio-vr41xx.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;