diff options
author | Joe Perches <joe@perches.com> | 2011-06-10 21:16:15 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-06-11 01:37:10 -0400 |
commit | 27810c5e7f8f2ddf036c16b5e40fd22abdc041f9 (patch) | |
tree | 94845a97ebcecff55dbcdafb27c8e928ae8d3a66 /drivers/gpio | |
parent | b57e3c2692b04ac0b2f14bb94c63291fad1d7309 (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')
-rw-r--r-- | drivers/gpio/gpio-vr41xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-vr41xx.c b/drivers/gpio/gpio-vr41xx.c index a365be040b36..98723cb9ac68 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) | |||
518 | if (!res) | 518 | if (!res) |
519 | return -EBUSY; | 519 | return -EBUSY; |
520 | 520 | ||
521 | giu_base = ioremap(res->start, res->end - res->start + 1); | 521 | giu_base = ioremap(res->start, resource_size(res)); |
522 | if (!giu_base) | 522 | if (!giu_base) |
523 | return -ENOMEM; | 523 | return -ENOMEM; |
524 | 524 | ||