diff options
Diffstat (limited to 'include/linux/pm.h')
| -rw-r--r-- | include/linux/pm.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/pm.h b/include/linux/pm.h index 3160648ccdd..411e4f4be52 100644 --- a/include/linux/pm.h +++ b/include/linux/pm.h @@ -425,7 +425,8 @@ struct dev_pm_info {  	pm_message_t		power_state;  	unsigned int		can_wakeup:1;  	unsigned int		async_suspend:1; -	unsigned int		in_suspend:1;	/* Owned by the PM core */ +	bool			is_prepared:1;	/* Owned by the PM core */ +	bool			is_suspended:1;	/* Ditto */  	spinlock_t		lock;  #ifdef CONFIG_PM_SLEEP  	struct list_head	entry;  |