[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <12015431603673@kroah.org>
Date: Mon, 28 Jan 2008 09:59:20 -0800
From: <gregkh@...e.de>
To: rjw@...k.pl, akpm@...ux-foundation.org, greg@...ah.com,
gregkh@...e.de, lenb@...nel.org, linux-kernel@...r.kernel.org,
linux-pm@...ts.linux-foundation.org, mb@...sch.de, pavel@....cz,
rpurdie@...ys.net, rubini@...vis.unipv.it,
stern@...land.harvard.edu
Subject: patch pm-export-device_pm_schedule_removal.patch added to gregkh-2.6 tree
This is a note to let you know that I've just added the patch titled
Subject: PM: Export device_pm_schedule_removal
to my gregkh-2.6 tree. Its filename is
pm-export-device_pm_schedule_removal.patch
This tree can be found at
http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/patches/
>From rjw@...k.pl Mon Jan 28 08:57:01 2008
From: "Rafael J. Wysocki" <rjw@...k.pl>
Date: Fri, 25 Jan 2008 01:30:25 +0100
Subject: PM: Export device_pm_schedule_removal
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: Michael Buesch <mb@...sch.de>, pm list <linux-pm@...ts.linux-foundation.org>, Alan Stern <stern@...land.harvard.edu>, Len Brown <lenb@...nel.org>, LKML <linux-kernel@...r.kernel.org>, Pavel Machek <pavel@....cz>, bcm43xx-dev@...ts.berlios.de, Alessandro Rubini <rubini@...vis.unipv.it>, Richard Purdie <rpurdie@...ys.net>, Greg KH <greg@...ah.com>
Message-ID: <200801250130.26591.rjw@...k.pl>
Content-Disposition: inline
From: Rafael J. Wysocki <rjw@...k.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@...k.pl>
Acked-by: Pavel Machek <pavel@....cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@...e.de>
---
drivers/base/power/main.c | 1 +
drivers/base/power/power.h | 1 -
include/linux/device.h | 6 ++++++
3 files changed, 7 insertions(+), 1 deletion(-)
--- a/drivers/base/power/main.c
+++ b/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
--- a/drivers/base/power/power.h
+++ b/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);
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -534,11 +534,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 */
/*
Patches currently in gregkh-2.6 which might be from rjw@...k.pl are
driver/pm-export-device_pm_schedule_removal.patch
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists