Skip to content

Commit df42581

Browse files
committed
mmc: Merge branch fixes into next
Merge the mmc fixes for v6.13-rc[n] into the next branch, to allow them to get tested together with the new mmc changes that are targeted for v6.14. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
2 parents ea049a0 + f3d87ab commit df42581

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

drivers/mmc/host/mtk-sd.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3072,6 +3072,7 @@ static int msdc_drv_probe(struct platform_device *pdev)
30723072
msdc_gate_clock(host);
30733073
platform_set_drvdata(pdev, NULL);
30743074
release_mem:
3075+
device_init_wakeup(&pdev->dev, false);
30753076
if (host->dma.gpd)
30763077
dma_free_coherent(&pdev->dev,
30773078
2 * sizeof(struct mt_gpdma_desc),
@@ -3105,6 +3106,7 @@ static void msdc_drv_remove(struct platform_device *pdev)
31053106
host->dma.gpd, host->dma.gpd_addr);
31063107
dma_free_coherent(&pdev->dev, MAX_BD_NUM * sizeof(struct mt_bdma_desc),
31073108
host->dma.bd, host->dma.bd_addr);
3109+
device_init_wakeup(&pdev->dev, false);
31083110
}
31093111

31103112
static void msdc_save_reg(struct msdc_host *host)

drivers/mmc/host/sdhci-tegra.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1525,7 +1525,6 @@ static const struct sdhci_pltfm_data sdhci_tegra186_pdata = {
15251525
.quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
15261526
SDHCI_QUIRK_SINGLE_POWER_WRITE |
15271527
SDHCI_QUIRK_NO_HISPD_BIT |
1528-
SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC |
15291528
SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
15301529
.quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
15311530
SDHCI_QUIRK2_ISSUE_CMD_DAT_RESET_TOGETHER,

0 commit comments

Comments
 (0)