1
0
Fork 0

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>
hifive-unleashed-5.1
Geert Uytterhoeven 2014-03-24 21:31:31 +01:00 committed by Rafael J. Wysocki
parent fd6fe82673
commit fe98245073
1 changed files with 1 additions and 1 deletions

View File

@ -870,7 +870,7 @@ Here is a schematic pseudo-code example:
foo->is_suspended = 0;
pm_runtime_mark_last_busy(&foo->dev);
if (foo->num_pending_requests > 0)
foo_process_requests(foo);
foo_process_next_request(foo);
unlock(&foo->private_lock);
return 0;
}