[PATCH -mm 1/5] PM: Export device_pm_schedule_removal

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Rafael J. Wysocki
Date: Thursday, January 24, 2008 - 5:30 pm

From: Rafael J. Wysocki <rjw@sisk.pl>

Move the declaration of device_pm_schedule_removal() to device.h
and make it exported, as it will be used directly by some drivers
for unregistering device objects during suspend/resume cycles in a
safe way.

Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
 drivers/base/power/main.c  |    1 +
 drivers/base/power/power.h |    1 -
 include/linux/device.h     |    6 ++++++
 3 files changed, 7 insertions(+), 1 deletion(-)

Index: linux-2.6.24-rc8-mm1/drivers/base/power/main.c
===================================================================
--- linux-2.6.24-rc8-mm1.orig/drivers/base/power/main.c
+++ linux-2.6.24-rc8-mm1/drivers/base/power/main.c
@@ -129,6 +129,7 @@ void device_pm_schedule_removal(struct d
 	list_move_tail(&dev->power.entry, &dpm_destroy);
 	mutex_unlock(&dpm_list_mtx);
 }
+EXPORT_SYMBOL_GPL(device_pm_schedule_removal);
 
 /**
  *	pm_sleep_lock - mutual exclusion for registration and suspend
Index: linux-2.6.24-rc8-mm1/include/linux/device.h
===================================================================
--- linux-2.6.24-rc8-mm1.orig/include/linux/device.h
+++ linux-2.6.24-rc8-mm1/include/linux/device.h
@@ -532,11 +532,17 @@ extern struct device *device_create(stru
 extern void device_destroy(struct class *cls, dev_t devt);
 #ifdef CONFIG_PM_SLEEP
 extern void destroy_suspended_device(struct class *cls, dev_t devt);
+extern void device_pm_schedule_removal(struct device *);
 #else /* !CONFIG_PM_SLEEP */
 static inline void destroy_suspended_device(struct class *cls, dev_t devt)
 {
 	device_destroy(cls, devt);
 }
+
+static inline void device_pm_schedule_removal(struct device *dev)
+{
+	device_unregister(dev);
+}
 #endif /* !CONFIG_PM_SLEEP */
 
 /*
Index: linux-2.6.24-rc8-mm1/drivers/base/power/power.h
===================================================================
--- linux-2.6.24-rc8-mm1.orig/drivers/base/power/power.h
+++ linux-2.6.24-rc8-mm1/drivers/base/power/power.h
@@ -13,7 +13,6 @@ static inline struct device *to_device(s
 
 extern void device_pm_add(struct device *);
 extern void device_pm_remove(struct device *);
-extern void device_pm_schedule_removal(struct device *);
 extern int pm_sleep_lock(void);
 extern void pm_sleep_unlock(void);
 
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH -mm 0/5] b43: Fix suspend/resume deadlock, Rafael J. Wysocki, (Thu Jan 24, 5:27 pm)
[PATCH -mm 1/5] PM: Export device_pm_schedule_removal, Rafael J. Wysocki, (Thu Jan 24, 5:30 pm)
[PATCH -mm 2/5] Misc: Add possibility to remove misc devic ..., Rafael J. Wysocki, (Thu Jan 24, 5:31 pm)
[PATCH -mm 3/5] HWRNG: Add possibility to remove hwrng dev ..., Rafael J. Wysocki, (Thu Jan 24, 5:35 pm)
[PATCH -mm 4/5] Leds: Add possibility to remove leds class ..., Rafael J. Wysocki, (Thu Jan 24, 5:36 pm)
[PATCH -mm 5/5] b43: Avoid unregistering device objects du ..., Rafael J. Wysocki, (Thu Jan 24, 5:37 pm)
Re: [PATCH -mm 1/5] PM: Export device_pm_schedule_removal, Pavel Machek, (Fri Jan 25, 12:44 am)
Re: [PATCH -mm 5/5] b43: Avoid unregistering device object ..., Rafael J. Wysocki, (Fri Jan 25, 4:45 am)