aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2014-03-24 16:31:31 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-03-26 11:33:06 -0400
commitfe98245073394a86039ad0ac55b240ac5b5db8f1 (patch)
treef426b5128732719fa340fa6eeb39c60c6985bcff
parentfd6fe82673a87f188283b7fc2bdde4ffa0085f2a (diff)
PM / Runtime: s/foo_process_requests/foo_process_next_request/
The example uses foo_process_next_request() everywhere else. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--Documentation/power/runtime_pm.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/power/runtime_pm.txt b/Documentation/power/runtime_pm.txt
index 0c1c4124d23a..5f96daf8566a 100644
--- a/Documentation/power/runtime_pm.txt
+++ b/Documentation/power/runtime_pm.txt
@@ -870,7 +870,7 @@ Here is a schematic pseudo-code example:
870 foo->is_suspended = 0; 870 foo->is_suspended = 0;
871 pm_runtime_mark_last_busy(&foo->dev); 871 pm_runtime_mark_last_busy(&foo->dev);
872 if (foo->num_pending_requests > 0) 872 if (foo->num_pending_requests > 0)
873 foo_process_requests(foo); 873 foo_process_next_request(foo);
874 unlock(&foo->private_lock); 874 unlock(&foo->private_lock);
875 return 0; 875 return 0;
876 } 876 }