summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2006-03-31 01:38:12 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2006-04-14 12:25:26 -0700
commit78a596b4490e17b9990d87b9d468ef5bb70daa10 (patch)
treebe8f14e15adfae7215ed7c8ad7f995d078ed55c9 /include
parent21440d313358043b0ce5e43b00ff3c9b35a8616c (diff)
downloadlinux-3.10-78a596b4490e17b9990d87b9d468ef5bb70daa10.tar.gz
linux-3.10-78a596b4490e17b9990d87b9d468ef5bb70daa10.tar.bz2
linux-3.10-78a596b4490e17b9990d87b9d468ef5bb70daa10.zip
[PATCH] remove kernel/power/pm.c:pm_unregister()
Since the last user is removed in -mm, we can now remove this long deprecated function. Signed-off-by: Adrian Bunk <bunk@stusta.de> Cc: Pavel Machek <pavel@ucw.cz> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r--include/linux/pm_legacy.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/pm_legacy.h b/include/linux/pm_legacy.h
index 1252b45face..008932d73c3 100644
--- a/include/linux/pm_legacy.h
+++ b/include/linux/pm_legacy.h
@@ -16,11 +16,6 @@ struct pm_dev __deprecated *
pm_register(pm_dev_t type, unsigned long id, pm_callback callback);
/*
- * Unregister a device with power management
- */
-void __deprecated pm_unregister(struct pm_dev *dev);
-
-/*
* Unregister all devices with matching callback
*/
void __deprecated pm_unregister_all(pm_callback callback);
@@ -41,8 +36,6 @@ static inline struct pm_dev *pm_register(pm_dev_t type,
return NULL;
}
-static inline void pm_unregister(struct pm_dev *dev) {}
-
static inline void pm_unregister_all(pm_callback callback) {}
static inline int pm_send_all(pm_request_t rqst, void *data)