mmc: sh_mmcif: use mmc_of_parse() to parse standard MMC DT bindings
Use mmc_of_parse() to get interface capability flags and used GPIOs from device-tree bindings. Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
parent
8c9beb117b
commit
eca889f60c
1 changed files with 2 additions and 1 deletions
|
@ -1369,6 +1369,7 @@ static int sh_mmcif_probe(struct platform_device *pdev)
|
||||||
ret = -ENOMEM;
|
ret = -ENOMEM;
|
||||||
goto ealloch;
|
goto ealloch;
|
||||||
}
|
}
|
||||||
|
mmc_of_parse(mmc);
|
||||||
host = mmc_priv(mmc);
|
host = mmc_priv(mmc);
|
||||||
host->mmc = mmc;
|
host->mmc = mmc;
|
||||||
host->addr = reg;
|
host->addr = reg;
|
||||||
|
@ -1381,7 +1382,7 @@ static int sh_mmcif_probe(struct platform_device *pdev)
|
||||||
mmc->ops = &sh_mmcif_ops;
|
mmc->ops = &sh_mmcif_ops;
|
||||||
sh_mmcif_init_ocr(host);
|
sh_mmcif_init_ocr(host);
|
||||||
|
|
||||||
mmc->caps = MMC_CAP_MMC_HIGHSPEED | MMC_CAP_WAIT_WHILE_BUSY;
|
mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_WAIT_WHILE_BUSY;
|
||||||
if (pd && pd->caps)
|
if (pd && pd->caps)
|
||||||
mmc->caps |= pd->caps;
|
mmc->caps |= pd->caps;
|
||||||
mmc->max_segs = 32;
|
mmc->max_segs = 32;
|
||||||
|
|
Loading…
Add table
Reference in a new issue