Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'core/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip

* 'core/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
PM: Split up sysdev_[suspend|resume] from device_power_[down|up], fix

+2 -5
+2 -5
drivers/base/sys.c
··· 303 303 * is guaranteed by virtue of the fact that child devices are registered 304 304 * after their parents. 305 305 */ 306 - 307 306 void sysdev_shutdown(void) 308 307 { 309 308 struct sysdev_class * cls; ··· 362 363 * This is only called by the device PM core, so we let them handle 363 364 * all synchronization. 364 365 */ 365 - 366 366 int sysdev_suspend(pm_message_t state) 367 367 { 368 368 struct sysdev_class * cls; ··· 430 432 } 431 433 return ret; 432 434 } 433 - 435 + EXPORT_SYMBOL_GPL(sysdev_suspend); 434 436 435 437 /** 436 438 * sysdev_resume - Bring system devices back to life. ··· 440 442 * 441 443 * Note: Interrupts are disabled when called. 442 444 */ 443 - 444 445 int sysdev_resume(void) 445 446 { 446 447 struct sysdev_class * cls; ··· 460 463 } 461 464 return 0; 462 465 } 463 - 466 + EXPORT_SYMBOL_GPL(sysdev_resume); 464 467 465 468 int __init system_bus_init(void) 466 469 {