diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2014-09-24 03:27:28 -0400 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2014-10-03 08:18:17 -0400 |
commit | 934e31b9dc848df56a65768388609358a1836ba0 (patch) | |
tree | 51941b3caa98c59eb72ee52bd191405f3926a38d | |
parent | 615413979487a1e25a3b76abbaa316280ca19d26 (diff) |
mmc: sdhci-acpi: Set SDHCI_QUIRK2_STOP_WITH_TC for Intel host controllers
Add quirk SDHCI_QUIRK2_STOP_WITH_TC for Intel host controllers.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-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 | ||