Commit bd2eefd0 authored by Caio Novais's avatar Caio Novais Committed by Luben Tuikov

drm/scheduler: Fix variable name in function description

Compiling AMD GPU drivers displays two warnings:

drivers/gpu/drm/scheduler/sched_main.c:738: warning: Function parameter or member 'file' not described in 'drm_sched_job_add_syncobj_dependency'
drivers/gpu/drm/scheduler/sched_main.c:738: warning: Excess function
parameter 'file_private' description in
'drm_sched_job_add_syncobj_dependency'

Get rid of them by renaming the variable name on the function description
Signed-off-by: default avatarCaio Novais <caionovais@usp.br>
Link: https://lore.kernel.org/r/20230325131532.6356-1-caionovais@usp.brReviewed-by: default avatarLuben Tuikov <luben.tuikov@amd.com>
Signed-off-by: default avatarLuben Tuikov <luben.tuikov@amd.com>
parent 1a2dbf03
...@@ -722,7 +722,7 @@ EXPORT_SYMBOL(drm_sched_job_add_dependency); ...@@ -722,7 +722,7 @@ EXPORT_SYMBOL(drm_sched_job_add_dependency);
/** /**
* drm_sched_job_add_syncobj_dependency - adds a syncobj's fence as a job dependency * drm_sched_job_add_syncobj_dependency - adds a syncobj's fence as a job dependency
* @job: scheduler job to add the dependencies to * @job: scheduler job to add the dependencies to
* @file_private: drm file private pointer * @file: drm file private pointer
* @handle: syncobj handle to lookup * @handle: syncobj handle to lookup
* @point: timeline point * @point: timeline point
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment