Skip to content

Commit 5b675f7

Browse files
committed
Merge tag 'mmc-v5.4-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc
Pull MMC fix from Ulf Hansson: "Don't overwrite quirk flags in sdhci-of-at91 host driver" * tag 'mmc-v5.4-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc: mmc: sdhci-of-at91: fix quirk2 overwrite
2 parents 11ac7cc + fed23c5 commit 5b675f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/mmc/host/sdhci-of-at91.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ static int sdhci_at91_probe(struct platform_device *pdev)
358358
pm_runtime_use_autosuspend(&pdev->dev);
359359

360360
/* HS200 is broken at this moment */
361-
host->quirks2 = SDHCI_QUIRK2_BROKEN_HS200;
361+
host->quirks2 |= SDHCI_QUIRK2_BROKEN_HS200;
362362

363363
ret = sdhci_add_host(host);
364364
if (ret)

0 commit comments

Comments
 (0)