summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/bcmstb_sdhci.c
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2019-08-06 02:47:50 +0000
committerPeng Fan <peng.fan@nxp.com>2019-08-09 13:45:25 +0800
commit425d83346d7b2e6946633a7b96e6116f68b6e21f (patch)
tree21bb437c753d3f5906eeb6e536912eafaed2f756 /drivers/mmc/bcmstb_sdhci.c
parent7835e8732262e3827e5604f82b56aabc5d720c45 (diff)
downloadu-boot-425d83346d7b2e6946633a7b96e6116f68b6e21f.tar.gz
u-boot-425d83346d7b2e6946633a7b96e6116f68b6e21f.tar.xz
u-boot-425d83346d7b2e6946633a7b96e6116f68b6e21f.zip
mmc: bcm: fix uninitialized pointer deref on probe
Commit 3d296365e4e8 ("mmc: sdhci: Add support for sdhci-caps-mask") sdhci_setup_cfg() expects a valid sdhci_host mmc field. Fixes: 3d296365e4e8 ("mmc: sdhci: Add support for sdhci-caps-mask") Cc: Faiz Abbas <faiz_abbas@ti.com> Cc: Matthias Brugger <mbrugger@suse.com> Cc: Thomas Fitzsimmons <fitzsim@fitzsim.org> Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'drivers/mmc/bcmstb_sdhci.c')
-rw-r--r--drivers/mmc/bcmstb_sdhci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mmc/bcmstb_sdhci.c b/drivers/mmc/bcmstb_sdhci.c
index eef46f3af1..c14f8289e6 100644
--- a/drivers/mmc/bcmstb_sdhci.c
+++ b/drivers/mmc/bcmstb_sdhci.c
@@ -73,6 +73,8 @@ static int sdhci_bcmstb_probe(struct udevice *dev)
if (ret)
return ret;
+ host->mmc = &plat->mmc;
+ host->mmc->dev = dev;
ret = sdhci_setup_cfg(&plat->cfg, host,
BCMSTB_SDHCI_MAXIMUM_CLOCK_FREQUENCY,
BCMSTB_SDHCI_MINIMUM_CLOCK_FREQUENCY);
@@ -80,7 +82,6 @@ static int sdhci_bcmstb_probe(struct udevice *dev)
return ret;
upriv->mmc = &plat->mmc;
- host->mmc = &plat->mmc;
host->mmc->priv = host;
return sdhci_probe(dev);