mmc: sdhci-milbeaut: convert to devm_platform_ioremap_resource
authorYangtao Li <tiny.windzz@gmail.com>
Sun, 15 Dec 2019 17:51:16 +0000 (17:51 +0000)
committerUlf Hansson <ulf.hansson@linaro.org>
Wed, 18 Dec 2019 13:46:06 +0000 (14:46 +0100)
Use devm_platform_ioremap_resource() to simplify code.

Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
Link: https://lore.kernel.org/r/20191215175120.3290-9-tiny.windzz@gmail.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sdhci-milbeaut.c

index a1aa21b9ae1c6152035969848e046cc928afbd88..e6245b7bda21119febc0145c9dcb9eaa760383a2 100644 (file)
@@ -242,7 +242,6 @@ static int sdhci_milbeaut_probe(struct platform_device *pdev)
 {
        struct sdhci_host *host;
        struct device *dev = &pdev->dev;
-       struct resource *res;
        int irq, ret = 0;
        struct f_sdhost_priv *priv;
 
@@ -280,8 +279,7 @@ static int sdhci_milbeaut_probe(struct platform_device *pdev)
        host->ops = &sdhci_milbeaut_ops;
        host->irq = irq;
 
-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       host->ioaddr = devm_ioremap_resource(&pdev->dev, res);
+       host->ioaddr = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(host->ioaddr)) {
                ret = PTR_ERR(host->ioaddr);
                goto err;