소스 검색

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>
Geert Uytterhoeven 11 년 전
부모
커밋
fe98245073
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Documentation/power/runtime_pm.txt

+ 1 - 1
Documentation/power/runtime_pm.txt

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