]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - drivers/rtc/rtc-mxc_v2.c
rtc: mxc_v2: use devm_platform_ioremap_resource() to simplify code
[linux.git] / drivers / rtc / rtc-mxc_v2.c
index 5b970a816631e12c18f447fc4045b7adcd701a90..91534560fe2a2d33e1128a28497c27741aab6a10 100644 (file)
@@ -279,7 +279,6 @@ static int mxc_rtc_wait_for_flag(void __iomem *ioaddr, int flag)
 static int mxc_rtc_probe(struct platform_device *pdev)
 {
        struct mxc_rtc_data *pdata;
-       struct resource *res;
        void __iomem *ioaddr;
        int ret = 0;
 
@@ -287,8 +286,7 @@ static int mxc_rtc_probe(struct platform_device *pdev)
        if (!pdata)
                return -ENOMEM;
 
-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       pdata->ioaddr = devm_ioremap_resource(&pdev->dev, res);
+       pdata->ioaddr = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(pdata->ioaddr))
                return PTR_ERR(pdata->ioaddr);