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>
This commit is contained in:
committed by
Linus Torvalds
parent
43d15bcd4b
commit
a91912f8e4
@@ -327,7 +327,7 @@ static int __devinit rtc_probe(struct platform_device *pdev)
|
|||||||
if (!res)
|
if (!res)
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
|
|
||||||
rtc1_base = ioremap(res->start, res->end - res->start + 1);
|
rtc1_base = ioremap(res->start, resource_size(res));
|
||||||
if (!rtc1_base)
|
if (!rtc1_base)
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
|
|
||||||
@@ -337,7 +337,7 @@ static int __devinit rtc_probe(struct platform_device *pdev)
|
|||||||
goto err_rtc1_iounmap;
|
goto err_rtc1_iounmap;
|
||||||
}
|
}
|
||||||
|
|
||||||
rtc2_base = ioremap(res->start, res->end - res->start + 1);
|
rtc2_base = ioremap(res->start, resource_size(res));
|
||||||
if (!rtc2_base) {
|
if (!rtc2_base) {
|
||||||
retval = -EBUSY;
|
retval = -EBUSY;
|
||||||
goto err_rtc1_iounmap;
|
goto err_rtc1_iounmap;
|
||||||
|
Reference in New Issue
Block a user