From patchwork Sat Jul 9 10:07:22 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mauro Carvalho Chehab X-Patchwork-Id: 12912151 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id D76E4C43334 for ; Sat, 9 Jul 2022 10:08:02 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5038B10F987; Sat, 9 Jul 2022 10:07:47 +0000 (UTC) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by gabe.freedesktop.org (Postfix) with ESMTPS id A21EF10E044 for ; Sat, 9 Jul 2022 10:07:41 +0000 (UTC) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id C7F07B819C4; Sat, 9 Jul 2022 10:07:39 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5CC75C341CA; Sat, 9 Jul 2022 10:07:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1657361258; bh=pVUIpt19JgKR7qlg44MmrmMhL51sRSTeq5HuSNhQMwg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mRRo5XT6i5RKuLq6TMxHEZyAch/WAMBhRjuyiLzIHD9hnWxQqqKA1GYlB65kHqB58 j4+O0TnR5AkPujWslDMQ0l0scqzj9qXic8K1TPz7kipbmFOHhbNECL6UMyWj8IX5e6 X2Wrkf3gyIwSeRqPYdUt6brU2Aeuc5Af1iBqaLAtuVY3qPykkFsCTNdl0cS3FxrjvC F5WgL+W66yW85yKsa4u0HwwO0OAJ4XlH6LhzVKitcEs13+BZ9zDId1S4GainHEjpB5 PmGI1rnfKwA3ZwVkj7g4dzW+X5LP/05l+br7y3CO3JuOlgAvpsH5e531G7ubtvaaQh zPv9dXqlmSzBQ== Received: from mchehab by mail.kernel.org with local (Exim 4.95) (envelope-from ) id 1oA7N9-004EGr-I4; Sat, 09 Jul 2022 11:07:35 +0100 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Subject: [PATCH v3 09/21] drm/scheduler: fix a kernel-doc warning Date: Sat, 9 Jul 2022 11:07:22 +0100 Message-Id: <879d916ad72029ea9611f78de1181df01dee5ca3.1657360984.git.mchehab@kernel.org> X-Mailer: git-send-email 2.36.1 In-Reply-To: References: MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Jonathan Corbet , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, David Airlie , Alex Deucher , Mauro Carvalho Chehab Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" The dev field was not documented: include/drm/gpu_scheduler.h:463: warning: Function parameter or member 'dev' not described in 'drm_gpu_scheduler' Document it. Reviewed-by: Alex Deucher Signed-off-by: Mauro Carvalho Chehab Reviewed-by: Alex Deucher --- To avoid mailbombing on a large number of people, only mailing lists were C/C on the cover. See [PATCH v3 00/21] at: https://lore.kernel.org/all/cover.1657360984.git.mchehab@kernel.org/ include/drm/gpu_scheduler.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h index addb135eeea6..c7c487e0c40e 100644 --- a/include/drm/gpu_scheduler.h +++ b/include/drm/gpu_scheduler.h @@ -435,6 +435,7 @@ struct drm_sched_backend_ops { * @_score: score used when the driver doesn't provide one * @ready: marks if the underlying HW is ready to work * @free_guilty: A hit to time out handler to free the guilty job. + * @dev: pointer to struct device. * * One scheduler is implemented for each hardware ring. */