From: Yoichi Yuasa Date: Wed, 16 Dec 2009 00:46:15 +0000 (-0800) Subject: rtc-vr41xx: use resource_size() X-Git-Tag: v2.6.33-rc1~71^2~139 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=a91912f8e4e92807d2cbf02d9687d421c1188f99;p=~emulex%2Finfiniband.git rtc-vr41xx: use resource_size() Signed-off-by: Yoichi Yuasa Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/rtc/rtc-vr41xx.c b/drivers/rtc/rtc-vr41xx.c index fadddac1e5a..c3244244e8c 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) if (!res) return -EBUSY; - rtc1_base = ioremap(res->start, res->end - res->start + 1); + rtc1_base = ioremap(res->start, resource_size(res)); if (!rtc1_base) return -EBUSY; @@ -337,7 +337,7 @@ static int __devinit rtc_probe(struct platform_device *pdev) 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) { retval = -EBUSY; goto err_rtc1_iounmap;