summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Anderson <[email protected]>2021-11-23 15:03:41 -0500
committerJaehoon Chung <[email protected]>2022-01-12 09:56:39 +0900
commit4ea11bf241cc19612fc1352d886e64890561f344 (patch)
tree82dff9508b56a0085f803f935a03e0f7ec8d8738
parentd39aa73ca87022c9deb0cc1c11dbf4fdb8e27037 (diff)
mmc: fsl_esdhc_imx: fix mmc->clock with actual clock
[ fsl_esdhc commit 30f6444d024a74ee48aa6969c1531aecd3c59deb ] Fix mmc->clock with actual clock which is divided by the controller, and record it with priv->clock. Signed-off-by: Yangbo Lu <[email protected]> Signed-off-by: Sean Anderson <[email protected]> Reviewed-by: Jaehoon Chung <[email protected]>
-rw-r--r--drivers/mmc/fsl_esdhc_imx.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/fsl_esdhc_imx.c b/drivers/mmc/fsl_esdhc_imx.c
index 4d2d7577239..72f3eec2059 100644
--- a/drivers/mmc/fsl_esdhc_imx.c
+++ b/drivers/mmc/fsl_esdhc_imx.c
@@ -665,6 +665,7 @@ static void set_sysctl(struct fsl_esdhc_priv *priv, struct mmc *mmc, uint clock)
esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_CKEN);
#endif
+ mmc->clock = sdhc_clk / pre_div / div;
priv->clock = clock;
}