[-mm patch] remove kernel/power/pm.c:pm_unregister()

From: Adrian Bunk
Date: Mon Feb 20 2006 - 17:35:26 EST


Since the last user is removed in -mm, we can now remove this long
deprecated function.


Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

---

include/linux/pm_legacy.h | 7 -------
kernel/power/pm.c | 20 --------------------
2 files changed, 27 deletions(-)

--- linux-2.6.16-rc4-mm1-full/include/linux/pm_legacy.h.old 2006-02-20 19:40:14.000000000 +0100
+++ linux-2.6.16-rc4-mm1-full/include/linux/pm_legacy.h 2006-02-20 19:40:24.000000000 +0100
@@ -16,11 +16,6 @@
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 @@
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)
--- linux-2.6.16-rc4-mm1-full/kernel/power/pm.c.old 2006-02-20 19:40:32.000000000 +0100
+++ linux-2.6.16-rc4-mm1-full/kernel/power/pm.c 2006-02-20 19:40:50.000000000 +0100
@@ -75,25 +75,6 @@
return dev;
}

-/**
- * pm_unregister - unregister a device with power management
- * @dev: device to unregister
- *
- * Remove a device from the power management notification lists. The
- * dev passed must be a handle previously returned by pm_register.
- */
-
-void pm_unregister(struct pm_dev *dev)
-{
- if (dev) {
- mutex_lock(&pm_devs_lock);
- list_del(&dev->entry);
- mutex_unlock(&pm_devs_lock);
-
- kfree(dev);
- }
-}
-
static void __pm_unregister(struct pm_dev *dev)
{
if (dev) {
@@ -258,7 +239,6 @@
}

EXPORT_SYMBOL(pm_register);
-EXPORT_SYMBOL(pm_unregister);
EXPORT_SYMBOL(pm_unregister_all);
EXPORT_SYMBOL(pm_send_all);
EXPORT_SYMBOL(pm_active);

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/