Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 74304
b: refs/heads/master
c: dec13c1
h: refs/heads/master
v: v3
  • Loading branch information
Daniel Drake authored and Greg Kroah-Hartman committed Nov 28, 2007
1 parent 75dda3d commit bb07d25
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 345ee8392dc149ca529f80e40583928977ad592e
refs/heads/master: dec13c15445fec29ca9087890895718450e80b95
4 changes: 3 additions & 1 deletion trunk/drivers/base/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -770,9 +770,10 @@ int device_add(struct device *dev)
error = device_add_attrs(dev);
if (error)
goto AttrsError;
error = device_pm_add(dev);
error = dpm_sysfs_add(dev);
if (error)
goto PMError;
device_pm_add(dev);
error = bus_add_device(dev);
if (error)
goto BusError;
Expand All @@ -797,6 +798,7 @@ int device_add(struct device *dev)
return error;
BusError:
device_pm_remove(dev);
dpm_sysfs_remove(dev);
PMError:
if (dev->bus)
blocking_notifier_call_chain(&dev->bus->bus_notifier,
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/base/power/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
obj-y := shutdown.o
obj-$(CONFIG_PM_SLEEP) += main.o sysfs.o
obj-$(CONFIG_PM) += sysfs.o
obj-$(CONFIG_PM_SLEEP) += main.o
obj-$(CONFIG_PM_TRACE) += trace.o

ifeq ($(CONFIG_DEBUG_DRIVER),y)
Expand Down
8 changes: 1 addition & 7 deletions trunk/drivers/base/power/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,14 @@ static DEFINE_MUTEX(dpm_list_mtx);
int (*platform_enable_wakeup)(struct device *dev, int is_on);


int device_pm_add(struct device *dev)
void device_pm_add(struct device *dev)
{
int error;

pr_debug("PM: Adding info for %s:%s\n",
dev->bus ? dev->bus->name : "No Bus",
kobject_name(&dev->kobj));
mutex_lock(&dpm_list_mtx);
list_add_tail(&dev->power.entry, &dpm_active);
error = dpm_sysfs_add(dev);
if (error)
list_del(&dev->power.entry);
mutex_unlock(&dpm_list_mtx);
return error;
}

void device_pm_remove(struct device *dev)
Expand Down
28 changes: 21 additions & 7 deletions trunk/drivers/base/power/power.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,31 +13,45 @@ extern void device_shutdown(void);

extern struct list_head dpm_active; /* The active device list */

static inline struct device * to_device(struct list_head * entry)
static inline struct device *to_device(struct list_head *entry)
{
return container_of(entry, struct device, power.entry);
}

extern int device_pm_add(struct device *);
extern void device_pm_add(struct device *);
extern void device_pm_remove(struct device *);

#else /* CONFIG_PM_SLEEP */


static inline void device_pm_add(struct device *dev)
{
}

static inline void device_pm_remove(struct device *dev)
{
}

#endif

#ifdef CONFIG_PM

/*
* sysfs.c
*/

extern int dpm_sysfs_add(struct device *);
extern void dpm_sysfs_remove(struct device *);

#else /* CONFIG_PM_SLEEP */

#else /* CONFIG_PM */

static inline int device_pm_add(struct device * dev)
static inline int dpm_sysfs_add(struct device *dev)
{
return 0;
}
static inline void device_pm_remove(struct device * dev)
{

static inline void dpm_sysfs_remove(struct device *dev)
{
}

#endif

0 comments on commit bb07d25

Please sign in to comment.