mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
mxcmmc: decrease minimum frequency to make MMC cards work
This is a temporary workaround until the MMC stack can be fixed. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Pierre Ossman <pierre@ossman.eu>
This commit is contained in:
parent
9fa7eb283c
commit
c499b0672f
@ -724,7 +724,9 @@ static int mxcmci_probe(struct platform_device *pdev)
|
||||
goto out_clk_put;
|
||||
}
|
||||
|
||||
mmc->f_min = clk_get_rate(host->clk) >> 7;
|
||||
mmc->f_min = clk_get_rate(host->clk) >> 16;
|
||||
if (mmc->f_min < 400000)
|
||||
mmc->f_min = 400000;
|
||||
mmc->f_max = clk_get_rate(host->clk) >> 1;
|
||||
|
||||
/* recommended in data sheet */
|
||||
|
Loading…
Reference in New Issue
Block a user