2005-04-16 16:20:36 -06:00
|
|
|
/*
|
|
|
|
* shutdown.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern void device_shutdown(void);
|
|
|
|
|
|
|
|
|
2007-07-29 15:27:18 -06:00
|
|
|
#ifdef CONFIG_PM_SLEEP
|
2005-04-16 16:20:36 -06:00
|
|
|
|
|
|
|
/*
|
|
|
|
* main.c
|
|
|
|
*/
|
|
|
|
|
2007-09-21 13:36:56 -06:00
|
|
|
extern struct list_head dpm_active; /* The active device list */
|
2005-04-16 16:20:36 -06:00
|
|
|
|
|
|
|
static inline struct device * to_device(struct list_head * entry)
|
|
|
|
{
|
2007-09-21 13:36:56 -06:00
|
|
|
return container_of(entry, struct device, power.entry);
|
2005-04-16 16:20:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
extern int device_pm_add(struct device *);
|
|
|
|
extern void device_pm_remove(struct device *);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sysfs.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern int dpm_sysfs_add(struct device *);
|
|
|
|
extern void dpm_sysfs_remove(struct device *);
|
|
|
|
|
2007-07-29 15:27:18 -06:00
|
|
|
#else /* CONFIG_PM_SLEEP */
|
2005-04-16 16:20:36 -06:00
|
|
|
|
|
|
|
|
|
|
|
static inline int device_pm_add(struct device * dev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static inline void device_pm_remove(struct device * dev)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|