mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 23:46:44 +00:00 
			
		
		
		
	 2430d12c94
			
		
	
	
		2430d12c94
		
	
	
	
	
		
			
			This patch (as1381b) updates a comment describing the kernel's policy toward enabling wakeup by default. It also makes device_set_wakeup_capable() actually do something when CONFIG_PM isn't enabled. It's not clear this is necessary; however if it isn't then device_init_wakeup() and device_can_wakeup() should also be do-nothing routines. Furthermore, I don't expect this change to have any noticeable effect -- but if it does then clearly the old behavior was wrong. Signed-off-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  *  pm_wakeup.h - Power management wakeup interface
 | |
|  *
 | |
|  *  Copyright (C) 2008 Alan Stern
 | |
|  *
 | |
|  *  This program is free software; you can redistribute it and/or modify
 | |
|  *  it under the terms of the GNU General Public License as published by
 | |
|  *  the Free Software Foundation; either version 2 of the License, or
 | |
|  *  (at your option) any later version.
 | |
|  *
 | |
|  *  This program is distributed in the hope that it will be useful,
 | |
|  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  *  GNU General Public License for more details.
 | |
|  *
 | |
|  *  You should have received a copy of the GNU General Public License
 | |
|  *  along with this program; if not, write to the Free Software
 | |
|  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 | |
|  */
 | |
| 
 | |
| #ifndef _LINUX_PM_WAKEUP_H
 | |
| #define _LINUX_PM_WAKEUP_H
 | |
| 
 | |
| #ifndef _DEVICE_H_
 | |
| # error "please don't include this file directly"
 | |
| #endif
 | |
| 
 | |
| #include <linux/types.h>
 | |
| 
 | |
| #ifdef CONFIG_PM
 | |
| 
 | |
| /* Changes to device_may_wakeup take effect on the next pm state change.
 | |
|  *
 | |
|  * By default, most devices should leave wakeup disabled.  The exceptions
 | |
|  * are devices that everyone expects to be wakeup sources: keyboards,
 | |
|  * power buttons, possibly network interfaces, etc.
 | |
|  */
 | |
| static inline void device_init_wakeup(struct device *dev, bool val)
 | |
| {
 | |
| 	dev->power.can_wakeup = dev->power.should_wakeup = val;
 | |
| }
 | |
| 
 | |
| static inline void device_set_wakeup_capable(struct device *dev, bool capable)
 | |
| {
 | |
| 	dev->power.can_wakeup = capable;
 | |
| }
 | |
| 
 | |
| static inline bool device_can_wakeup(struct device *dev)
 | |
| {
 | |
| 	return dev->power.can_wakeup;
 | |
| }
 | |
| 
 | |
| static inline void device_set_wakeup_enable(struct device *dev, bool enable)
 | |
| {
 | |
| 	dev->power.should_wakeup = enable;
 | |
| }
 | |
| 
 | |
| static inline bool device_may_wakeup(struct device *dev)
 | |
| {
 | |
| 	return dev->power.can_wakeup && dev->power.should_wakeup;
 | |
| }
 | |
| 
 | |
| #else /* !CONFIG_PM */
 | |
| 
 | |
| /* For some reason the following routines work even without CONFIG_PM */
 | |
| static inline void device_init_wakeup(struct device *dev, bool val)
 | |
| {
 | |
| 	dev->power.can_wakeup = val;
 | |
| }
 | |
| 
 | |
| static inline void device_set_wakeup_capable(struct device *dev, bool capable)
 | |
| {
 | |
| 	dev->power.can_wakeup = capable;
 | |
| }
 | |
| 
 | |
| static inline bool device_can_wakeup(struct device *dev)
 | |
| {
 | |
| 	return dev->power.can_wakeup;
 | |
| }
 | |
| 
 | |
| static inline void device_set_wakeup_enable(struct device *dev, bool enable)
 | |
| {
 | |
| }
 | |
| 
 | |
| static inline bool device_may_wakeup(struct device *dev)
 | |
| {
 | |
| 	return false;
 | |
| }
 | |
| 
 | |
| #endif /* !CONFIG_PM */
 | |
| 
 | |
| #endif /* _LINUX_PM_WAKEUP_H */
 |