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.0-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc

Pull MMC host fixes from Ulf Hansson:

- mediatek: Fix incorrect register write for tunings

- bcm2835: Fixup leakage of DMA channel on probe errors

* tag 'mmc-v5.0-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc:
mmc: mediatek: fix incorrect register setting of hs400_cmd_int_delay
mmc: bcm2835: Fix DMA channel leak on probe error

+3 -1
+2
drivers/mmc/host/bcm2835.c
··· 1431 1431 1432 1432 err: 1433 1433 dev_dbg(dev, "%s -> err %d\n", __func__, ret); 1434 + if (host->dma_chan_rxtx) 1435 + dma_release_channel(host->dma_chan_rxtx); 1434 1436 mmc_free_host(mmc); 1435 1437 1436 1438 return ret;
+1 -1
drivers/mmc/host/mtk-sd.c
··· 846 846 847 847 if (timing == MMC_TIMING_MMC_HS400 && 848 848 host->dev_comp->hs400_tune) 849 - sdr_set_field(host->base + PAD_CMD_TUNE, 849 + sdr_set_field(host->base + tune_reg, 850 850 MSDC_PAD_TUNE_CMDRRDLY, 851 851 host->hs400_cmd_int_delay); 852 852 dev_dbg(host->dev, "sclk: %d, timing: %d\n", host->mmc->actual_clock,