[AMD Official Use Only - AMD Internal Distribution Only] Ping ?
-----Original Message----- From: Sunil Khatri <[email protected]> Sent: Thursday, April 17, 2025 3:55 PM To: [email protected]; [email protected] Cc: Deucher, Alexander <[email protected]>; Koenig, Christian <[email protected]>; Tvrtko Ursulin <[email protected]>; Pelloux-Prayer, Pierre-Eric <[email protected]>; Khatri, Sunil <[email protected]> Subject: [PATCH v2] drm/sched: fix the warning in drm_sched_job_done Fix the below warning. scheduler/sched_main.c:397: warning: Function parameter or struct member 'result' not described in 'drm_sched_job_done' Reviewed-by: Tvrtko Ursulin <[email protected]> Signed-off-by: Sunil Khatri <[email protected]> --- drivers/gpu/drm/scheduler/sched_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/scheduler/sched_main.c b/drivers/gpu/drm/scheduler/sched_main.c index bfea608a7106..5cd29e92b133 100644 --- a/drivers/gpu/drm/scheduler/sched_main.c +++ b/drivers/gpu/drm/scheduler/sched_main.c @@ -390,6 +390,7 @@ static void drm_sched_run_free_queue(struct drm_gpu_scheduler *sched) /** * drm_sched_job_done - complete a job * @s_job: pointer to the job which is done + * @result: error code for dma fence for scheduler * * Finish the job's fence and wake up the worker thread. */ -- 2.34.1
