From patchwork Sun Apr 3 23:10:40 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 12799764 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 9E61BC433EF for ; Sun, 3 Apr 2022 23:10:45 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id C35CA10E193; Sun, 3 Apr 2022 23:10:44 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by gabe.freedesktop.org (Postfix) with ESMTPS id CF25410E193 for ; Sun, 3 Apr 2022 23:10:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=6kZxA/ryHkaU9h/eQxcRuN9OQKG8Wz6rQOnBsqvvAIM=; b=b8yQ+shycBrAuZ1bphbkYe/UY0 w9RLUEg4rEzzdMw1tTMWh8L1mXzVEWZ2eXJhiSURz+lopWPE5LhVrQUZIAW3rOAk847f5nkDXvkrR 6ApanfC8plvYpFWZfkK5jSg+3nyE+5czoL9JpjJvx50n4f7ahVgxbAUjkzoW8jKxqtirFcX2tEwyM RMxKdhTAPGb3m+DkpWZ0fNJIHceRUrSlxdzUAK+CRjwP3H5koSP/SYA75iY9v5gDy0qEhnc4Avenh kKH5NCSlJz2+Y41VToxQ2C3BpXH0eqLRxACCtZzeCQ07GQ9p5/OJwA1VN+AvscVyPf8Npy94QjfM8 lROKVdZg==; Received: from [2601:1c0:6280:3f0::aa0b] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1nb9Mn-00CVxK-F4; Sun, 03 Apr 2022 23:10:41 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Subject: [PATCH v2] drm: drm/drm_file.h: fix a kernel-doc typo Date: Sun, 3 Apr 2022 16:10:40 -0700 Message-Id: <20220403231040.18540-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.34.1 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: David Airlie , Randy Dunlap , dri-devel@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Fix a build warning from 'make htmldocs' by correcting the lock name in the kernel-doc comment. include/drm/drm_file.h:369: warning: Function parameter or member 'master_lookup_lock' not described in 'drm_file' Signed-off-by: Randy Dunlap Cc: David Airlie Cc: Daniel Vetter Cc: dri-devel@lists.freedesktop.org Reviewed-by: Simon Ser --- v2: rebase/resend include/drm/drm_file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20220401.orig/include/drm/drm_file.h +++ linux-next-20220401/include/drm/drm_file.h @@ -248,7 +248,7 @@ struct drm_file { */ struct drm_master *master; - /** @master_lock: Serializes @master. */ + /** @master_lookup_lock: Serializes @master. */ spinlock_t master_lookup_lock; /** @pid: Process that opened this file. */