diff options
Diffstat (limited to 'include/linux/mmc/card.h')
| -rw-r--r-- | include/linux/mmc/card.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h index 9b6336ad3266..cf3780a6ccc4 100644 --- a/include/linux/mmc/card.h +++ b/include/linux/mmc/card.h @@ -226,7 +226,7 @@ struct mmc_queue_req;   * MMC Physical partitions   */  struct mmc_part { -	unsigned int	size;	/* partition size (in bytes) */ +	u64		size;	/* partition size (in bytes) */  	unsigned int	part_cfg;	/* partition type */  	char	name[MAX_MMC_PART_NAME_LEN];  	bool	force_ro;	/* to make boot parts RO by default */ @@ -291,6 +291,7 @@ struct mmc_card {  	struct sd_switch_caps	sw_caps;	/* switch (CMD6) caps */  	unsigned int		sdio_funcs;	/* number of SDIO functions */ +	atomic_t		sdio_funcs_probed; /* number of probed SDIO funcs */  	struct sdio_cccr	cccr;		/* common card info */  	struct sdio_cis		cis;		/* common tuple info */  	struct sdio_func	*sdio_func[SDIO_MAX_FUNCS]; /* SDIO functions (devices) */  |