projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09938ce
)
mmc: sdhci-spear: convert to devm_platform_ioremap_resource
author
Yangtao Li
<tiny.windzz@gmail.com>
Sun, 15 Dec 2019 17:51:12 +0000
(17:51 +0000)
committer
Ulf 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-5-tiny.windzz@gmail.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sdhci-spear.c
patch
|
blob
|
history
diff --git
a/drivers/mmc/host/sdhci-spear.c
b/drivers/mmc/host/sdhci-spear.c
index
141dd38
..
b4b6308
100644
(file)
--- a/
drivers/mmc/host/sdhci-spear.c
+++ b/
drivers/mmc/host/sdhci-spear.c
@@
-43,7
+43,6
@@
static const struct sdhci_ops sdhci_pltfm_ops = {
static int sdhci_probe(struct platform_device *pdev)
{
struct sdhci_host *host;
- struct resource *iomem;
struct spear_sdhci *sdhci;
struct device *dev;
int ret;
@@
-56,8
+55,7
@@
static int sdhci_probe(struct platform_device *pdev)
goto err;
}
- iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- host->ioaddr = devm_ioremap_resource(&pdev->dev, iomem);
+ host->ioaddr = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(host->ioaddr)) {
ret = PTR_ERR(host->ioaddr);
dev_dbg(&pdev->dev, "unable to map iomem: %d\n", ret);