diff options
-rw-r--r-- | drivers/mmc/host/sdhci-acpi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/mmc/host/sdhci-acpi.c b/drivers/mmc/host/sdhci-acpi.c index 327bc24ec8ce..6b2468b3ab07 100644 --- a/drivers/mmc/host/sdhci-acpi.c +++ b/drivers/mmc/host/sdhci-acpi.c | |||
@@ -175,7 +175,7 @@ static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = { | |||
175 | MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR, | 175 | MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR, |
176 | .caps2 = MMC_CAP2_HC_ERASE_SZ, | 176 | .caps2 = MMC_CAP2_HC_ERASE_SZ, |
177 | .flags = SDHCI_ACPI_RUNTIME_PM, | 177 | .flags = SDHCI_ACPI_RUNTIME_PM, |
178 | .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN, | 178 | .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN | SDHCI_QUIRK2_STOP_WITH_TC, |
179 | .probe_slot = sdhci_acpi_emmc_probe_slot, | 179 | .probe_slot = sdhci_acpi_emmc_probe_slot, |
180 | }; | 180 | }; |
181 | 181 | ||
@@ -191,7 +191,8 @@ static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio = { | |||
191 | static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = { | 191 | static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = { |
192 | .flags = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL | | 192 | .flags = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL | |
193 | SDHCI_ACPI_RUNTIME_PM, | 193 | SDHCI_ACPI_RUNTIME_PM, |
194 | .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON, | 194 | .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON | |
195 | SDHCI_QUIRK2_STOP_WITH_TC, | ||
195 | .probe_slot = sdhci_acpi_sd_probe_slot, | 196 | .probe_slot = sdhci_acpi_sd_probe_slot, |
196 | }; | 197 | }; |
197 | 198 | ||