diff options
author | Yoichi Yuasa <yuasa@linux-mips.org> | 2009-12-15 19:46:15 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 10:20:00 -0500 |
commit | a91912f8e4e92807d2cbf02d9687d421c1188f99 (patch) | |
tree | 3fe95ab027dd2900aaffa0cd76160e64da190ee0 /drivers/rtc | |
parent | 43d15bcd4b6ba45fc45c99f5ef46e2528fb0dadf (diff) |
rtc-vr41xx: use resource_size()
Signed-off-by: Yoichi Yuasa <yuasa@linux-mips.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-vr41xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-vr41xx.c b/drivers/rtc/rtc-vr41xx.c index fadddac1e5a4..c3244244e8cf 100644 --- a/drivers/rtc/rtc-vr41xx.c +++ b/drivers/rtc/rtc-vr41xx.c | |||
@@ -327,7 +327,7 @@ static int __devinit rtc_probe(struct platform_device *pdev) | |||
327 | if (!res) | 327 | if (!res) |
328 | return -EBUSY; | 328 | return -EBUSY; |
329 | 329 | ||
330 | rtc1_base = ioremap(res->start, res->end - res->start + 1); | 330 | rtc1_base = ioremap(res->start, resource_size(res)); |
331 | if (!rtc1_base) | 331 | if (!rtc1_base) |
332 | return -EBUSY; | 332 | return -EBUSY; |
333 | 333 | ||
@@ -337,7 +337,7 @@ static int __devinit rtc_probe(struct platform_device *pdev) | |||
337 | goto err_rtc1_iounmap; | 337 | goto err_rtc1_iounmap; |
338 | } | 338 | } |
339 | 339 | ||
340 | rtc2_base = ioremap(res->start, res->end - res->start + 1); | 340 | rtc2_base = ioremap(res->start, resource_size(res)); |
341 | if (!rtc2_base) { | 341 | if (!rtc2_base) { |
342 | retval = -EBUSY; | 342 | retval = -EBUSY; |
343 | goto err_rtc1_iounmap; | 343 | goto err_rtc1_iounmap; |