diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2006-03-23 03:00:01 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-23 07:38:07 -0800 |
commit | 74c7e2efbe37378026f00ad9e7253796d7b2fc99 (patch) | |
tree | ddea6072e727fb37b55a3b45122e023a3951decf /include/linux/pm.h | |
parent | 61159a314bca6408320c3173c1282c64f5cdaa76 (diff) | |
download | linux-74c7e2efbe37378026f00ad9e7253796d7b2fc99.tar.gz linux-74c7e2efbe37378026f00ad9e7253796d7b2fc99.tar.bz2 linux-74c7e2efbe37378026f00ad9e7253796d7b2fc99.zip |
[PATCH] kernel/power: move externs to header files
Move externs from C source files to header files.
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
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 5be87ba3b7ac..6df2585c0169 100644 --- a/include/linux/pm.h +++ b/include/linux/pm.h @@ -188,6 +188,8 @@ extern void device_power_up(void); extern void device_resume(void); #ifdef CONFIG_PM +extern suspend_disk_method_t pm_disk_mode; + extern int device_suspend(pm_message_t state); #define device_set_wakeup_enable(dev,val) \ @@ -215,7 +217,6 @@ static inline int dpm_runtime_suspend(struct device * dev, pm_message_t state) static inline void dpm_runtime_resume(struct device * dev) { - } #endif |