mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
mmc: tangier_sdhci: fix uninitialized pointer deref on probe
Commit3d296365e4
("mmc: sdhci: Add support for sdhci-caps-mask") sdhci_setup_cfg() expects a valid sdhci_host mmc field. Fixes:3d296365e4
("mmc: sdhci: Add support for sdhci-caps-mask") Cc: Faiz Abbas <faiz_abbas@ti.com> Cc: Vincent Tinelli <vincent.tinelli@intel.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
@@ -51,13 +51,14 @@ static int sdhci_tangier_probe(struct udevice *dev)
|
|||||||
/* MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195 */
|
/* MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195 */
|
||||||
host->voltages = MMC_VDD_165_195;
|
host->voltages = MMC_VDD_165_195;
|
||||||
|
|
||||||
|
host->mmc = &plat->mmc;
|
||||||
|
host->mmc->dev = dev;
|
||||||
ret = sdhci_setup_cfg(&plat->cfg, host, SDHCI_TANGIER_FMAX,
|
ret = sdhci_setup_cfg(&plat->cfg, host, SDHCI_TANGIER_FMAX,
|
||||||
SDHCI_TANGIER_FMIN);
|
SDHCI_TANGIER_FMIN);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
upriv->mmc = &plat->mmc;
|
upriv->mmc = &plat->mmc;
|
||||||
host->mmc = &plat->mmc;
|
|
||||||
host->mmc->priv = host;
|
host->mmc->priv = host;
|
||||||
|
|
||||||
return sdhci_probe(dev);
|
return sdhci_probe(dev);
|
||||||
|
Reference in New Issue
Block a user