From: Lee Jones Date: Mon, 16 Nov 2020 17:41:06 +0000 (+0000) Subject: drm/v3d/v3d_sched: Demote non-conformant kernel-doc header X-Git-Tag: Ubuntu-5.13.0-19.19~4434^2~6^2~6 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=d49c4b2c07325aeb0064836f70ea7ed1836fb159;p=mirror_ubuntu-jammy-kernel.git drm/v3d/v3d_sched: Demote non-conformant kernel-doc header Fixes the following W=1 kernel build warning(s): drivers/gpu/drm/v3d/v3d_sched.c:75: warning: Function parameter or member 'sched_job' not described in 'v3d_job_dependency' drivers/gpu/drm/v3d/v3d_sched.c:75: warning: Function parameter or member 's_entity' not described in 'v3d_job_dependency' Cc: Eric Anholt Cc: David Airlie Cc: Daniel Vetter Cc: Sumit Semwal Cc: "Christian König" Cc: dri-devel@lists.freedesktop.org Cc: linux-media@vger.kernel.org Cc: linaro-mm-sig@lists.linaro.org Signed-off-by: Lee Jones Signed-off-by: Daniel Vetter Link: https://patchwork.freedesktop.org/patch/msgid/20201116174112.1833368-37-lee.jones@linaro.org --- diff --git a/drivers/gpu/drm/v3d/v3d_sched.c b/drivers/gpu/drm/v3d/v3d_sched.c index f968f389633a..452682e2209f 100644 --- a/drivers/gpu/drm/v3d/v3d_sched.c +++ b/drivers/gpu/drm/v3d/v3d_sched.c @@ -63,8 +63,8 @@ v3d_job_free(struct drm_sched_job *sched_job) v3d_job_put(job); } -/** - * v3d_job_dependency - Returns the fences that the job depends on, one by one. +/* + * Returns the fences that the job depends on, one by one. * * If placed in the scheduler's .dependency method, the corresponding * .run_job won't be called until all of them have been signaled.