diff options
Diffstat (limited to 'include/linux/mmc/sdhci.h')
| -rw-r--r-- | include/linux/mmc/sdhci.h | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h index 1edcb4dad8c..4bbc3301fbb 100644 --- a/include/linux/mmc/sdhci.h +++ b/include/linux/mmc/sdhci.h @@ -92,6 +92,8 @@ struct sdhci_host {  #define SDHCI_QUIRK2_HOST_OFF_CARD_ON			(1<<0)  #define SDHCI_QUIRK2_HOST_NO_CMD23			(1<<1) +/* The system physically doesn't support 1.8v, even if the host does */ +#define SDHCI_QUIRK2_NO_1_8_V				(1<<2)  	int irq;		/* Device IRQ */  	void __iomem *ioaddr;	/* Mapped address */ @@ -158,8 +160,8 @@ struct sdhci_host {  	struct timer_list timer;	/* Timer for timeouts */ -	unsigned int caps;	/* Alternative CAPABILITY_0 */ -	unsigned int caps1;	/* Alternative CAPABILITY_1 */ +	u32 caps;		/* Alternative CAPABILITY_0 */ +	u32 caps1;		/* Alternative CAPABILITY_1 */  	unsigned int            ocr_avail_sdio;	/* OCR bit masks */  	unsigned int            ocr_avail_sd;  |