Changeset 27334 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Mar 12, 2010 3:20:39 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58762
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r25484 r27334 232 232 static struct dev_pm_ops gPlatformPMOps = 233 233 { 234 .suspend = VBoxDrvSuspend, 235 .resume = VBoxDrvResume, 234 .suspend = VBoxDrvSuspend, /* before entering deep sleep */ 235 .resume = VBoxDrvResume, /* after wakeup from deep sleep */ 236 .freeze = VBoxDrvSuspend, /* before creating hibernation image */ 237 .restore = VBoxDrvResume, /* after wakeing up from hibernation */ 236 238 }; 237 239 # endif … … 242 244 # if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 30) 243 245 .suspend = VBoxDrvSuspend, 244 .resume = VBoxDrvResume,246 .resume = VBoxDrvResume, 245 247 # endif 246 248 /** @todo .shutdown? */
Note:
See TracChangeset
for help on using the changeset viewer.