mfd: Use resouce_size for tc6393xb
authorH Hartley Sweeten <[email protected]>
Tue, 5 Jan 2010 19:01:16 +0000 (20:01 +0100)
committerSamuel Ortiz <[email protected]>
Sun, 7 Mar 2010 21:16:54 +0000 (22:16 +0100)
Use resource_size() for ioremap.

Signed-off-by: H Hartley Sweeten <[email protected]>
Cc: Ian Molton <[email protected]>
Signed-off-by: Samuel Ortiz <[email protected]>
drivers/mfd/tc6393xb.c

index 4bc5a08a2b09e8421548aaa5a0a99ecfa70370eb..c59e5c5737d05fb2961eed8528a98e114fa29b2a 100644 (file)
@@ -647,7 +647,7 @@ static int __devinit tc6393xb_probe(struct platform_device *dev)
        if (ret)
                goto err_request_scr;
 
-       tc6393xb->scr = ioremap(rscr->start, rscr->end - rscr->start + 1);
+       tc6393xb->scr = ioremap(rscr->start, resource_size(rscr));
        if (!tc6393xb->scr) {
                ret = -ENOMEM;
                goto err_ioremap;