Commit 75f6eacd authored by Yangtao Li's avatar Yangtao Li Committed by Ulf Hansson

mmc: sdhci-milbeaut: convert to devm_platform_ioremap_resource

Use devm_platform_ioremap_resource() to simplify code.
Signed-off-by: default avatarYangtao Li <tiny.windzz@gmail.com>
Link: https://lore.kernel.org/r/20191215175120.3290-9-tiny.windzz@gmail.comSigned-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 4942ae0e
...@@ -242,7 +242,6 @@ static int sdhci_milbeaut_probe(struct platform_device *pdev) ...@@ -242,7 +242,6 @@ static int sdhci_milbeaut_probe(struct platform_device *pdev)
{ {
struct sdhci_host *host; struct sdhci_host *host;
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct resource *res;
int irq, ret = 0; int irq, ret = 0;
struct f_sdhost_priv *priv; struct f_sdhost_priv *priv;
...@@ -280,8 +279,7 @@ static int sdhci_milbeaut_probe(struct platform_device *pdev) ...@@ -280,8 +279,7 @@ static int sdhci_milbeaut_probe(struct platform_device *pdev)
host->ops = &sdhci_milbeaut_ops; host->ops = &sdhci_milbeaut_ops;
host->irq = irq; host->irq = irq;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); host->ioaddr = devm_platform_ioremap_resource(pdev, 0);
host->ioaddr = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(host->ioaddr)) { if (IS_ERR(host->ioaddr)) {
ret = PTR_ERR(host->ioaddr); ret = PTR_ERR(host->ioaddr);
goto err; goto err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment