aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/drm
diff options
context:
space:
mode:
authorNirmoy Das <nirmoy.das@amd.com>2020-01-22 10:37:56 +0100
committerAlex Deucher <alexander.deucher@amd.com>2020-01-27 16:46:44 -0500
commit2639f453f28e71dc4149fb06c71bcf6f93eb468f (patch)
treeaca24841d3b16af176f7fbe0d4b8f43c4f3c777e /include/drm
parentdrm/amdgpu: initialize bo_va_list when add gws to process (diff)
downloadwireguard-linux-2639f453f28e71dc4149fb06c71bcf6f93eb468f.tar.xz
wireguard-linux-2639f453f28e71dc4149fb06c71bcf6f93eb468f.zip
drm/amdgpu: fix doc by clarifying sched_list definition
expand sched_list definition for better understanding. Also fix a typo atleast -> at least Signed-off-by: Nirmoy Das <nirmoy.das@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/gpu_scheduler.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h
index 9e71be129c30..589be851f8a1 100644
--- a/include/drm/gpu_scheduler.h
+++ b/include/drm/gpu_scheduler.h
@@ -52,8 +52,9 @@ enum drm_sched_priority {
* @list: used to append this struct to the list of entities in the
* runqueue.
* @rq: runqueue on which this entity is currently scheduled.
- * @sched_list: a list of drm_gpu_schedulers on which jobs from this entity can
- * be scheduled
+ * @sched_list: A list of schedulers (drm_gpu_schedulers).
+ * Jobs from this entity can be scheduled on any scheduler
+ * on this list.
* @num_sched_list: number of drm_gpu_schedulers in the sched_list.
* @rq_lock: lock to modify the runqueue to which this entity belongs.
* @job_queue: the list of jobs of this entity.