aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/suspend.h
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-09-01 07:47:49 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-09-01 07:47:49 -0400
commit068765ba7987e73d4381edfe47b70aa121c7155c (patch)
tree021926eb2535caa0ee30d8bf031b74493aa51b84 /include/linux/suspend.h
parent69e273c0b0a3c337a521d083374c918dc52c666f (diff)
PM / sleep: Mechanism for aborting system suspends unconditionally
It sometimes may be necessary to abort a system suspend in progress or wake up the system from suspend-to-idle even if the pm_wakeup_event()/pm_stay_awake() mechanism is not enabled. For this purpose, introduce a new global variable pm_abort_suspend and make pm_wakeup_pending() check its value. Also add routines for manipulating that variable. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/linux/suspend.h')
-rw-r--r--include/linux/suspend.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/suspend.h b/include/linux/suspend.h
index 519064e0c943..06a9910827c2 100644
--- a/include/linux/suspend.h
+++ b/include/linux/suspend.h
@@ -371,6 +371,8 @@ extern int unregister_pm_notifier(struct notifier_block *nb);
371extern bool events_check_enabled; 371extern bool events_check_enabled;
372 372
373extern bool pm_wakeup_pending(void); 373extern bool pm_wakeup_pending(void);
374extern void pm_system_wakeup(void);
375extern void pm_wakeup_clear(void);
374extern bool pm_get_wakeup_count(unsigned int *count, bool block); 376extern bool pm_get_wakeup_count(unsigned int *count, bool block);
375extern bool pm_save_wakeup_count(unsigned int count); 377extern bool pm_save_wakeup_count(unsigned int count);
376extern void pm_wakep_autosleep_enabled(bool set); 378extern void pm_wakep_autosleep_enabled(bool set);
@@ -418,6 +420,8 @@ static inline int unregister_pm_notifier(struct notifier_block *nb)
418#define pm_notifier(fn, pri) do { (void)(fn); } while (0) 420#define pm_notifier(fn, pri) do { (void)(fn); } while (0)
419 421
420static inline bool pm_wakeup_pending(void) { return false; } 422static inline bool pm_wakeup_pending(void) { return false; }
423static inline void pm_system_wakeup(void) {}
424static inline void pm_wakeup_clear(void) {}
421 425
422static inline void lock_system_sleep(void) {} 426static inline void lock_system_sleep(void) {}
423static inline void unlock_system_sleep(void) {} 427static inline void unlock_system_sleep(void) {}