Commit c89a869b authored by Yangtao Li's avatar Yangtao Li Committed by Ulf Hansson

mmc: pxamci: Use devm_platform_get_and_ioremap_resource()

Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_get_and_ioremap_resource(), as this is exactly
what this function does.
Signed-off-by: default avatarYangtao Li <frank.li@vivo.com>
Link: https://lore.kernel.org/r/20230704131939.22562-3-frank.li@vivo.comSigned-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 9a2fdd2e
...@@ -612,7 +612,6 @@ static int pxamci_probe(struct platform_device *pdev) ...@@ -612,7 +612,6 @@ static int pxamci_probe(struct platform_device *pdev)
struct resource *r; struct resource *r;
int ret, irq; int ret, irq;
r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
irq = platform_get_irq(pdev, 0); irq = platform_get_irq(pdev, 0);
if (irq < 0) if (irq < 0)
return irq; return irq;
...@@ -685,14 +684,14 @@ static int pxamci_probe(struct platform_device *pdev) ...@@ -685,14 +684,14 @@ static int pxamci_probe(struct platform_device *pdev)
} }
spin_lock_init(&host->lock); spin_lock_init(&host->lock);
host->res = r;
host->imask = MMC_I_MASK_ALL; host->imask = MMC_I_MASK_ALL;
host->base = devm_ioremap_resource(dev, r); host->base = devm_platform_get_and_ioremap_resource(pdev, 0, &r);
if (IS_ERR(host->base)) { if (IS_ERR(host->base)) {
ret = PTR_ERR(host->base); ret = PTR_ERR(host->base);
goto out; goto out;
} }
host->res = r;
/* /*
* Ensure that the host controller is shut down, and setup * Ensure that the host controller is shut down, and setup
......
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