Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fe982450 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Rafael J. Wysocki
Browse files

PM / Runtime: s/foo_process_requests/foo_process_next_request/



The example uses foo_process_next_request() everywhere else.

Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent fd6fe826
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}