mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 07:31:15 +00:00
drivers: mmc: iproc_sdhci: move host.mmc init before sdhci_setup_cfg
move host.mmc before sdhci_setup_cfg Signed-off-by: Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com> Signed-off-by: Bharat Kumar Reddy Gooty <bharat.gooty@broadcom.com>
This commit is contained in:
parent
7a65b8b6bb
commit
29617ca39a
1 changed files with 5 additions and 5 deletions
|
@ -212,6 +212,11 @@ static int iproc_sdhci_probe(struct udevice *dev)
|
|||
|
||||
memcpy(&iproc_host->host, host, sizeof(struct sdhci_host));
|
||||
|
||||
iproc_host->host.mmc = &plat->mmc;
|
||||
iproc_host->host.mmc->dev = dev;
|
||||
iproc_host->host.mmc->priv = &iproc_host->host;
|
||||
upriv->mmc = iproc_host->host.mmc;
|
||||
|
||||
ret = sdhci_setup_cfg(&plat->cfg, &iproc_host->host,
|
||||
f_min_max[1], f_min_max[0]);
|
||||
if (ret) {
|
||||
|
@ -219,11 +224,6 @@ static int iproc_sdhci_probe(struct udevice *dev)
|
|||
return ret;
|
||||
}
|
||||
|
||||
iproc_host->host.mmc = &plat->mmc;
|
||||
iproc_host->host.mmc->dev = dev;
|
||||
iproc_host->host.mmc->priv = &iproc_host->host;
|
||||
upriv->mmc = iproc_host->host.mmc;
|
||||
|
||||
return sdhci_probe(dev);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue