diff options
Diffstat (limited to 'include/linux/mmc/sdhci.h')
| -rw-r--r-- | include/linux/mmc/sdhci.h | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h index e9051e1cb1c..ac83b105bed 100644 --- a/include/linux/mmc/sdhci.h +++ b/include/linux/mmc/sdhci.h @@ -122,6 +122,7 @@ struct sdhci_host {  #define SDHCI_PV_ENABLED	(1<<8)	/* Preset value enabled */  #define SDHCI_SDIO_IRQ_ENABLED	(1<<9)	/* SDIO irq enabled */  #define SDHCI_HS200_NEEDS_TUNING (1<<10)	/* HS200 needs tuning */ +#define SDHCI_USING_RETUNING_TIMER (1<<11)	/* Host is using a retuning timer for the card */  	unsigned int version;	/* SDHCI spec. version */ @@ -155,7 +156,8 @@ struct sdhci_host {  	struct timer_list timer;	/* Timer for timeouts */ -	unsigned int caps;	/* Alternative capabilities */ +	unsigned int caps;	/* Alternative CAPABILITY_0 */ +	unsigned int caps1;	/* Alternative CAPABILITY_1 */  	unsigned int            ocr_avail_sdio;	/* OCR bit masks */  	unsigned int            ocr_avail_sd;  |