diff options
Diffstat (limited to 'include/linux/pm.h')
| -rw-r--r-- | include/linux/pm.h | 19 | 
1 files changed, 4 insertions, 15 deletions
diff --git a/include/linux/pm.h b/include/linux/pm.h index 383fd68aaee1..66a656eb335b 100644 --- a/include/linux/pm.h +++ b/include/linux/pm.h @@ -342,7 +342,7 @@ struct dev_pm_ops {  #define SET_LATE_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn)  #endif -#ifdef CONFIG_PM_RUNTIME +#ifdef CONFIG_PM  #define SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \  	.runtime_suspend = suspend_fn, \  	.runtime_resume = resume_fn, \ @@ -351,14 +351,7 @@ struct dev_pm_ops {  #define SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn)  #endif -#ifdef CONFIG_PM -#define SET_PM_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \ -	.runtime_suspend = suspend_fn, \ -	.runtime_resume = resume_fn, \ -	.runtime_idle = idle_fn, -#else -#define SET_PM_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) -#endif +#define SET_PM_RUNTIME_PM_OPS	SET_RUNTIME_PM_OPS  /*   * Use this if you want to use the same suspend and resume callbacks for suspend @@ -538,11 +531,7 @@ enum rpm_request {  };  struct wakeup_source; - -struct pm_domain_data { -	struct list_head list_node; -	struct device *dev; -}; +struct pm_domain_data;  struct pm_subsys_data {  	spinlock_t lock; @@ -576,7 +565,7 @@ struct dev_pm_info {  #else  	unsigned int		should_wakeup:1;  #endif -#ifdef CONFIG_PM_RUNTIME +#ifdef CONFIG_PM  	struct timer_list	suspend_timer;  	unsigned long		timer_expires;  	struct work_struct	work;  | 
