aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mmc/dw_mmc.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/mmc/dw_mmc.h b/include/linux/mmc/dw_mmc.h
index 34be4f47293c..de61de5608c9 100644
--- a/include/linux/mmc/dw_mmc.h
+++ b/include/linux/mmc/dw_mmc.h
@@ -209,9 +209,18 @@ struct dw_mci_dma_ops {
209#define DW_MCI_QUIRK_HIGHSPEED BIT(2) 209#define DW_MCI_QUIRK_HIGHSPEED BIT(2)
210/* Unreliable card detection */ 210/* Unreliable card detection */
211#define DW_MCI_QUIRK_BROKEN_CARD_DETECTION BIT(3) 211#define DW_MCI_QUIRK_BROKEN_CARD_DETECTION BIT(3)
212
212/* Write Protect detection not available */ 213/* Write Protect detection not available */
214/*
215 * NOTE: DW_MCI_QUIRK_NO_WRITE_PROTECT will be removed in a future
216 * patch in the series once reference to it is removed.
217 */
213#define DW_MCI_QUIRK_NO_WRITE_PROTECT BIT(4) 218#define DW_MCI_QUIRK_NO_WRITE_PROTECT BIT(4)
214 219
220/* Slot level quirks */
221/* This slot has no write protect */
222#define DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT BIT(0)
223
215struct dma_pdata; 224struct dma_pdata;
216 225
217struct block_settings { 226struct block_settings {