diff options
author | Joe Perches <joe@perches.com> | 2011-06-10 18:16:15 -0700 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-06-10 23:37:10 -0600 |
commit | 27810c5e7f8f2ddf036c16b5e40fd22abdc041f9 (patch) | |
tree | 94845a97ebcecff55dbcdafb27c8e928ae8d3a66 /drivers/gpio/gpio-vr41xx.c | |
parent | b57e3c2692b04ac0b2f14bb94c63291fad1d7309 (diff) | |
download | op-kernel-dev-27810c5e7f8f2ddf036c16b5e40fd22abdc041f9.zip op-kernel-dev-27810c5e7f8f2ddf036c16b5e40fd22abdc041f9.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-vr41xx.c b/drivers/gpio/gpio-vr41xx.c index a365be0..98723cb 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; |