Skip to content

Commit 4139bad

Browse files
committed
mmc: Merge branch fixes into next
Merge the mmc fixes for v6.14-rc[n] into the next branch, to allow them to get tested together with the new mmc changes that are targeted for v6.15. Signed-off-by: Ulf Hansson <[email protected]>
2 parents 63ddfb9 + e51a349 commit 4139bad

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

drivers/mmc/host/atmel-mci.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2499,8 +2499,10 @@ static int atmci_probe(struct platform_device *pdev)
24992499
/* Get MCI capabilities and set operations according to it */
25002500
atmci_get_cap(host);
25012501
ret = atmci_configure_dma(host);
2502-
if (ret == -EPROBE_DEFER)
2502+
if (ret == -EPROBE_DEFER) {
2503+
clk_disable_unprepare(host->mck);
25032504
goto err_dma_probe_defer;
2505+
}
25042506
if (ret == 0) {
25052507
host->prepare_data = &atmci_prepare_data_dma;
25062508
host->submit_data = &atmci_submit_data_dma;

0 commit comments

Comments
 (0)