From patchwork Tue Oct 8 08:37:10 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sunil Khatri X-Patchwork-Id: 13825997 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 DF1FACED27F for ; Tue, 8 Oct 2024 08:45:39 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id C4A7F10E4A8; Tue, 8 Oct 2024 08:45:38 +0000 (UTC) Received: from rtg-sunil-navi33.amd.com (unknown [165.204.156.251]) by gabe.freedesktop.org (Postfix) with ESMTPS id 08C9910E4A8; Tue, 8 Oct 2024 08:45:36 +0000 (UTC) Received: from rtg-sunil-navi33.amd.com (localhost [127.0.0.1]) by rtg-sunil-navi33.amd.com (8.15.2/8.15.2/Debian-22ubuntu3) with ESMTP id 4988bIfR622174; Tue, 8 Oct 2024 14:07:18 +0530 Received: (from sunil@localhost) by rtg-sunil-navi33.amd.com (8.15.2/8.15.2/Submit) id 4988bH4B622173; Tue, 8 Oct 2024 14:07:17 +0530 From: Sunil Khatri To: Alex Deucher , =?utf-8?q?Christian_K=C3=B6nig?= Cc: amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, Sunil Khatri , =?utf-8?b?VmlsbGUgU3lyasOkbMOk?= , Sameer Lattannavar , =?utf-8?q?Jonas_=C3=85da?= =?utf-8?q?hl?= Subject: [PATCH v1 2/2] drm: fix doc warning for height and width of plane Date: Tue, 8 Oct 2024 14:07:10 +0530 Message-Id: <20241008083710.622153-2-sunil.khatri@amd.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20241008083710.622153-1-sunil.khatri@amd.com> References: <20241008083710.622153-1-sunil.khatri@amd.com> 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: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Fixes: include/uapi/drm/drm_mode.h:869: warning: Function parameter or struct member 'width' not described in 'drm_plane_size_hint' include/uapi/drm/drm_mode.h:869: warning: Function parameter or struct member 'height' not described in 'drm_plane_size_hint' Signed-off-by: Sunil Khatri Cc: Ville Syrjälä Cc: Sameer Lattannavar Cc: Jonas Ådahl --- include/uapi/drm/drm_mode.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h index d390011b89b4..ea07fbbde425 100644 --- a/include/uapi/drm/drm_mode.h +++ b/include/uapi/drm/drm_mode.h @@ -862,6 +862,8 @@ struct drm_color_lut { * * The plane SIZE_HINTS property blob contains an * array of struct drm_plane_size_hint. + * @width: Plane width hint + * @height: Plane height hint */ struct drm_plane_size_hint { __u16 width;