diff options
| author | Adrian Bunk <bunk@kernel.org> | 2008-07-24 00:28:34 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-24 13:47:22 -0400 |
| commit | d75f65fd247fe85d90a3880d143b1bb22fe13a48 (patch) | |
| tree | f9df15bff67e07c0788b13c7e580148ce5137b39 /include/linux | |
| parent | 77437fd4e61f87cc94d9314baa5cbf50e3ccdf54 (diff) | |
remove include/linux/pm_legacy.h
Remove the obsolete and no longer used include/linux/pm_legacy.h
Reviewed-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Cc: Pavel Machek <pavel@suse.cz>
Acked-by: "Rafael J. Wysocki" <rjw@sisk.pl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/pm_legacy.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/include/linux/pm_legacy.h b/include/linux/pm_legacy.h deleted file mode 100644 index 446f4f42b952..000000000000 --- a/include/linux/pm_legacy.h +++ /dev/null | |||
| @@ -1,35 +0,0 @@ | |||
| 1 | #ifndef __LINUX_PM_LEGACY_H__ | ||
| 2 | #define __LINUX_PM_LEGACY_H__ | ||
| 3 | |||
| 4 | |||
| 5 | #ifdef CONFIG_PM_LEGACY | ||
| 6 | |||
| 7 | /* | ||
| 8 | * Register a device with power management | ||
| 9 | */ | ||
| 10 | struct pm_dev __deprecated * | ||
| 11 | pm_register(pm_dev_t type, unsigned long id, pm_callback callback); | ||
| 12 | |||
| 13 | /* | ||
| 14 | * Send a request to all devices | ||
| 15 | */ | ||
| 16 | int __deprecated pm_send_all(pm_request_t rqst, void *data); | ||
| 17 | |||
| 18 | #else /* CONFIG_PM_LEGACY */ | ||
| 19 | |||
| 20 | static inline struct pm_dev *pm_register(pm_dev_t type, | ||
| 21 | unsigned long id, | ||
| 22 | pm_callback callback) | ||
| 23 | { | ||
| 24 | return NULL; | ||
| 25 | } | ||
| 26 | |||
| 27 | static inline int pm_send_all(pm_request_t rqst, void *data) | ||
| 28 | { | ||
| 29 | return 0; | ||
| 30 | } | ||
| 31 | |||
| 32 | #endif /* CONFIG_PM_LEGACY */ | ||
| 33 | |||
| 34 | #endif /* __LINUX_PM_LEGACY_H__ */ | ||
| 35 | |||
