Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'mmc-v5.8-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc into master

Pull MMC fix from Ulf Hansson:
"Fix clock divider calculation in the ASPEED SDHCI controller"

* tag 'mmc-v5.8-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc:
mmc: sdhci-of-aspeed: Fix clock divider calculation

+1 -1
+1 -1
drivers/mmc/host/sdhci-of-aspeed.c
··· 68 68 if (WARN_ON(clock > host->max_clk)) 69 69 clock = host->max_clk; 70 70 71 - for (div = 1; div < 256; div *= 2) { 71 + for (div = 2; div < 256; div *= 2) { 72 72 if ((parent / div) <= clock) 73 73 break; 74 74 }