From patchwork Sun Dec 19 17:37:28 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 12686823 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 44CB9C433EF for ; Sun, 19 Dec 2021 17:37:34 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id D30E3112804; Sun, 19 Dec 2021 17:37:32 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by gabe.freedesktop.org (Postfix) with ESMTPS id 81450112804 for ; Sun, 19 Dec 2021 17:37:31 +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=45VJu1f6INdq/MgERimVJHzqo+e8PJ5KOh5ifY4yM1E=; b=K6YkmXvqekoNPOZxSEU6lLaixa gFxw/p1M7ot+Ns70fO8L2AIh90SuO0O8nMypDwlNboTuOB5z3HTDXohM1hca2fI6a5eTTC570B8/A WZUhQtffYM2Qu4OzfYwRBiWY52aUBUKUMb46sOkO0tRV9CQYRP2mZvQJxiOFtzj9iXG1G/dEb8B4z Q0v8lQsn6f/cP0t0t/ZkfC92A/gFfkmGNvXKN4De4b0pTvwgNm2JRR61L5Ux05lvWJh9tBmQMbKn3 OMS+fkad9MLDxL10J310sb5ridDVIZ21yQdK3tNN2k0ZIK7g9e/7/EXLYE49cB9X/B8qFOea7kHb9 7xJZM+Kw==; 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 1mz07l-00GWmS-S2; Sun, 19 Dec 2021 17:37:29 +0000 From: Randy Dunlap To: dri-devel@lists.freedesktop.org Subject: [PATCH] drm: drm/drm_file.h: fix a kernel-doc typo Date: Sun, 19 Dec 2021 09:37:28 -0800 Message-Id: <20211219173728.9806-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.31.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 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 Reviewed-by: Simon Ser --- include/drm/drm_file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20211217.orig/include/drm/drm_file.h +++ linux-next-20211217/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. */