diff mbox series

[U-Boot,v6,10/15] mmc: am654_sdhci: Use f_max in mmc_config

Message ID 20190604131700.29936-11-faiz_abbas@ti.com
State Superseded
Delegated to: Tom Rini
Headers show
Series Add Support for eMMC in Am65x-evm | expand

Commit Message

Faiz Abbas June 4, 2019, 1:16 p.m. UTC
Use f_max provided in mmc_config and remove it from the platform
specific data.

Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>
---
 drivers/mmc/am654_sdhci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/mmc/am654_sdhci.c b/drivers/mmc/am654_sdhci.c
index cd7ad03479..b9a7924d4e 100644
--- a/drivers/mmc/am654_sdhci.c
+++ b/drivers/mmc/am654_sdhci.c
@@ -67,7 +67,6 @@ 
 struct am654_sdhci_plat {
 	struct mmc_config cfg;
 	struct mmc mmc;
-	unsigned int f_max;
 	struct regmap *base;
 	bool non_removable;
 	u32 otap_del_sel;
@@ -193,6 +192,7 @@  static int am654_sdhci_probe(struct udevice *dev)
 	struct am654_sdhci_plat *plat = dev_get_platdata(dev);
 	struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
 	struct sdhci_host *host = dev_get_priv(dev);
+	struct mmc_config *cfg = &plat->cfg;
 	struct power_domain sdhci_pwrdmn;
 	struct clk clk;
 	unsigned long clock;