ALSA: snd-usb-caiaq: drop version number
[firewire-audio.git] / include / linux / pm_wakeup.h
blob76aca48722aeb116556b36d478e1e114834c8446
1 /*
2 * pm_wakeup.h - Power management wakeup interface
4 * Copyright (C) 2008 Alan Stern
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef _LINUX_PM_WAKEUP_H
22 #define _LINUX_PM_WAKEUP_H
24 #ifndef _DEVICE_H_
25 # error "please don't include this file directly"
26 #endif
28 #include <linux/types.h>
30 #ifdef CONFIG_PM
32 /* Changes to device_may_wakeup take effect on the next pm state change.
34 * By default, most devices should leave wakeup disabled. The exceptions
35 * are devices that everyone expects to be wakeup sources: keyboards,
36 * power buttons, possibly network interfaces, etc.
38 static inline void device_init_wakeup(struct device *dev, bool val)
40 dev->power.can_wakeup = dev->power.should_wakeup = val;
43 static inline void device_set_wakeup_capable(struct device *dev, bool capable)
45 dev->power.can_wakeup = capable;
48 static inline bool device_can_wakeup(struct device *dev)
50 return dev->power.can_wakeup;
53 static inline void device_set_wakeup_enable(struct device *dev, bool enable)
55 dev->power.should_wakeup = enable;
58 static inline bool device_may_wakeup(struct device *dev)
60 return dev->power.can_wakeup && dev->power.should_wakeup;
63 #else /* !CONFIG_PM */
65 /* For some reason the following routines work even without CONFIG_PM */
66 static inline void device_init_wakeup(struct device *dev, bool val)
68 dev->power.can_wakeup = val;
71 static inline void device_set_wakeup_capable(struct device *dev, bool capable)
73 dev->power.can_wakeup = capable;
76 static inline bool device_can_wakeup(struct device *dev)
78 return dev->power.can_wakeup;
81 static inline void device_set_wakeup_enable(struct device *dev, bool enable)
85 static inline bool device_may_wakeup(struct device *dev)
87 return false;
90 #endif /* !CONFIG_PM */
92 #endif /* _LINUX_PM_WAKEUP_H */