diff options
| author | Patrick Mochel <mochel@osdl.org> | 2003-08-20 21:47:37 -0700 |
|---|---|---|
| committer | Patrick Mochel <mochel@osdl.org> | 2003-08-20 21:47:37 -0700 |
| commit | 9234878aafa9a6e8f595fa259ea4fe267526714c (patch) | |
| tree | 8d109564cddf16cadcff4035622647fe5c60f9e7 /include/linux | |
| parent | 12770fac7789757dd31ef329f09c2485127374ab (diff) | |
[power] Fixup device suspend/resume function names.
- Revert names of functions back to device_{suspend,resume} since at least
APM are still using them.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/pm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/pm.h b/include/linux/pm.h index 70282a7943b1..3017bdef5f03 100644 --- a/include/linux/pm.h +++ b/include/linux/pm.h @@ -240,10 +240,10 @@ struct dev_pm_info { extern void device_pm_set_parent(struct device * dev, struct device * parent); -extern int device_pm_suspend(u32 state); -extern int device_pm_power_down(u32 state); -extern void device_pm_power_up(void); -extern void device_pm_resume(void); +extern int device_suspend(u32 state); +extern int device_power_down(u32 state); +extern void device_power_up(void); +extern void device_resume(void); #endif /* __KERNEL__ */ |
