PM / Runtime: Fix comments to match runtime callback code

Commit 05aa55dddb changed routines to
succeed if the driver handler is not defined. Comments were not updated.

Signed-off-by: Aaro Koskinen <aaro.koskinen@nokia.com>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
This commit is contained in:
Aaro Koskinen 2010-11-25 23:41:19 +01:00 committed by Rafael J. Wysocki
parent eda4b716ea
commit 6675bc0567

View file

@ -39,7 +39,7 @@ EXPORT_SYMBOL_GPL(pm_generic_runtime_idle);
* *
* If PM operations are defined for the @dev's driver and they include * If PM operations are defined for the @dev's driver and they include
* ->runtime_suspend(), execute it and return its error code. Otherwise, * ->runtime_suspend(), execute it and return its error code. Otherwise,
* return -EINVAL. * return 0.
*/ */
int pm_generic_runtime_suspend(struct device *dev) int pm_generic_runtime_suspend(struct device *dev)
{ {
@ -58,7 +58,7 @@ EXPORT_SYMBOL_GPL(pm_generic_runtime_suspend);
* *
* If PM operations are defined for the @dev's driver and they include * If PM operations are defined for the @dev's driver and they include
* ->runtime_resume(), execute it and return its error code. Otherwise, * ->runtime_resume(), execute it and return its error code. Otherwise,
* return -EINVAL. * return 0.
*/ */
int pm_generic_runtime_resume(struct device *dev) int pm_generic_runtime_resume(struct device *dev)
{ {