diff options
Diffstat (limited to 'include/linux/mmc')
| -rw-r--r-- | include/linux/mmc/host.h | 7 | ||||
| -rw-r--r-- | include/linux/mmc/sdio.h | 2 | 
2 files changed, 2 insertions, 7 deletions
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 26a3c7bc29ae..c7e7b43600e9 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h @@ -302,9 +302,6 @@ struct mmc_host {  	u32			ocr_avail_sdio;	/* SDIO-specific OCR */  	u32			ocr_avail_sd;	/* SD-specific OCR */  	u32			ocr_avail_mmc;	/* MMC-specific OCR */ -#ifdef CONFIG_PM_SLEEP -	struct notifier_block	pm_notify; -#endif  	struct wakeup_source	*ws;		/* Enable consume of uevents */  	u32			max_current_330;  	u32			max_current_300; @@ -423,7 +420,6 @@ struct mmc_host {  	/* group bitfields together to minimize padding */  	unsigned int		use_spi_crc:1;  	unsigned int		claimed:1;	/* host exclusively claimed */ -	unsigned int		bus_dead:1;	/* bus has been released */  	unsigned int		doing_init_tune:1; /* initial tuning in progress */  	unsigned int		can_retune:1;	/* re-tuning can be used */  	unsigned int		doing_retune:1;	/* re-tuning in progress */ @@ -454,7 +450,6 @@ struct mmc_host {  	struct mmc_slot		slot;  	const struct mmc_bus_ops *bus_ops;	/* current bus driver */ -	unsigned int		bus_refs;	/* reference counter */  	unsigned int		sdio_irqs;  	struct task_struct	*sdio_irq_thread; @@ -514,7 +509,7 @@ void mmc_free_host(struct mmc_host *);  void mmc_of_parse_clk_phase(struct mmc_host *host,  			    struct mmc_clk_phase_map *map);  int mmc_of_parse(struct mmc_host *host); -int mmc_of_parse_voltage(struct device_node *np, u32 *mask); +int mmc_of_parse_voltage(struct mmc_host *host, u32 *mask);  static inline void *mmc_priv(struct mmc_host *host)  { diff --git a/include/linux/mmc/sdio.h b/include/linux/mmc/sdio.h index e28769991e82..2a05d1ac4f0e 100644 --- a/include/linux/mmc/sdio.h +++ b/include/linux/mmc/sdio.h @@ -82,7 +82,7 @@  #define  SDIO_SD_REV_1_01	0	/* SD Physical Spec Version 1.01 */  #define  SDIO_SD_REV_1_10	1	/* SD Physical Spec Version 1.10 */  #define  SDIO_SD_REV_2_00	2	/* SD Physical Spec Version 2.00 */ -#define  SDIO_SD_REV_3_00	3	/* SD Physical Spev Version 3.00 */ +#define  SDIO_SD_REV_3_00	3	/* SD Physical Spec Version 3.00 */  #define SDIO_CCCR_IOEx		0x02  #define SDIO_CCCR_IORx		0x03  |