diff options
Diffstat (limited to 'include/linux/mmc/host.h')
| -rw-r--r-- | include/linux/mmc/host.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 85800b48241f..45cde8cd39f2 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h @@ -329,6 +329,7 @@ struct mmc_host {  	unsigned int		can_retune:1;	/* re-tuning can be used */  	unsigned int		doing_retune:1;	/* re-tuning in progress */  	unsigned int		retune_now:1;	/* do re-tuning at next req */ +	unsigned int		retune_paused:1; /* re-tuning is temporarily disabled */  	int			rescan_disable;	/* disable card detection */  	int			rescan_entered;	/* used with nonremovable devices */ @@ -526,4 +527,7 @@ static inline void mmc_retune_recheck(struct mmc_host *host)  		host->retune_now = 1;  } +void mmc_retune_pause(struct mmc_host *host); +void mmc_retune_unpause(struct mmc_host *host); +  #endif /* LINUX_MMC_HOST_H */ |