From 89434bf095ae8e9e48c6199c9829e1c7076904b8 Mon Sep 17 00:00:00 2001 From: Adrian Bunk Date: Wed, 23 Jul 2008 21:28:34 -0700 Subject: [PATCH] --- yaml --- r: 105358 b: refs/heads/master c: d75f65fd247fe85d90a3880d143b1bb22fe13a48 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/arch/frv/kernel/pm.c | 1 - trunk/arch/mips/au1000/common/power.c | 1 - trunk/arch/x86/kernel/apm_32.c | 1 - trunk/include/linux/pm_legacy.h | 35 --------------------------- 5 files changed, 1 insertion(+), 39 deletions(-) delete mode 100644 trunk/include/linux/pm_legacy.h diff --git a/[refs] b/[refs] index 9c2f0bacb1dd..bd2854ed463a 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 77437fd4e61f87cc94d9314baa5cbf50e3ccdf54 +refs/heads/master: d75f65fd247fe85d90a3880d143b1bb22fe13a48 diff --git a/trunk/arch/frv/kernel/pm.c b/trunk/arch/frv/kernel/pm.c index 73f3aeefd203..d1113c5031f5 100644 --- a/trunk/arch/frv/kernel/pm.c +++ b/trunk/arch/frv/kernel/pm.c @@ -14,7 +14,6 @@ #include #include #include -#include #include #include #include diff --git a/trunk/arch/mips/au1000/common/power.c b/trunk/arch/mips/au1000/common/power.c index 2166b9e1e80c..bd854a6d1d89 100644 --- a/trunk/arch/mips/au1000/common/power.c +++ b/trunk/arch/mips/au1000/common/power.c @@ -31,7 +31,6 @@ #include #include -#include #include #include diff --git a/trunk/arch/x86/kernel/apm_32.c b/trunk/arch/x86/kernel/apm_32.c index bf9b441331e9..9ee24e6bc4b0 100644 --- a/trunk/arch/x86/kernel/apm_32.c +++ b/trunk/arch/x86/kernel/apm_32.c @@ -219,7 +219,6 @@ #include #include #include -#include #include #include #include diff --git a/trunk/include/linux/pm_legacy.h b/trunk/include/linux/pm_legacy.h deleted file mode 100644 index 446f4f42b952..000000000000 --- a/trunk/include/linux/pm_legacy.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef __LINUX_PM_LEGACY_H__ -#define __LINUX_PM_LEGACY_H__ - - -#ifdef CONFIG_PM_LEGACY - -/* - * Register a device with power management - */ -struct pm_dev __deprecated * -pm_register(pm_dev_t type, unsigned long id, pm_callback callback); - -/* - * Send a request to all devices - */ -int __deprecated pm_send_all(pm_request_t rqst, void *data); - -#else /* CONFIG_PM_LEGACY */ - -static inline struct pm_dev *pm_register(pm_dev_t type, - unsigned long id, - pm_callback callback) -{ - return NULL; -} - -static inline int pm_send_all(pm_request_t rqst, void *data) -{ - return 0; -} - -#endif /* CONFIG_PM_LEGACY */ - -#endif /* __LINUX_PM_LEGACY_H__ */ -