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 tag 'pm-6.13-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull power management documentation fix from Rafael Wysocki:
"Fix a runtime PM documentation mistake that may mislead someone into
making a coding mistake (Paul Barker)"

* tag 'pm-6.13-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
Documentation: PM: Clarify pm_runtime_resume_and_get() return value

+3 -1
+3 -1
Documentation/power/runtime_pm.rst
··· 347 347 348 348 `int pm_runtime_resume_and_get(struct device *dev);` 349 349 - run pm_runtime_resume(dev) and if successful, increment the device's 350 - usage counter; return the result of pm_runtime_resume 350 + usage counter; returns 0 on success (whether or not the device's 351 + runtime PM status was already 'active') or the error code from 352 + pm_runtime_resume() on failure. 351 353 352 354 `int pm_request_idle(struct device *dev);` 353 355 - submit a request to execute the subsystem-level idle callback for the