From patchwork Sun Apr 3 22:53:54 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 12799763 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 B946DC433EF for ; Sun, 3 Apr 2022 22:54:02 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4B3B610E048; Sun, 3 Apr 2022 22:54:01 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4507A10E048 for ; Sun, 3 Apr 2022 22:54:00 +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=zDRYhWu2tTNgKAXBhJFHtn2OfOGGinXlPakc33ZktO4=; b=V/+VTiTVN8UP17TN0I/0PwqKZD LhFwmhDwbX+TSPuMoJdpy/7tbyHWltAQ3zxvdCTWwbkwDtm/r2yV54lsSEHi1G7rlrAPsndWN7dbu lSj+Rj7rzq4O3XSifGUGKwXVcQg6m76wSb6Lkmh//RE9gjIi6vJx5FmG8VSmAz0dsVfOP79/Ipiy4 t3sEH/gAkUL9n363wpwIo74TAev32eazYOxn5pwmSwyU3g5OZcY++FCi/EKN/F6TOwLS/JNq1fmh7 5i3MwLjbfAUnjsyzNqZERd1MEGeaxkO+PVZUHjIURfTwW7t8HzZaZo60nYz2SjIzRmmlYpqYymBNe SNTqCRCw==; 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 1nb96Z-00CVFY-5V; Sun, 03 Apr 2022 22:53:55 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Subject: [PATCH] gpu: host1x: fix a kernel-doc warning Date: Sun, 3 Apr 2022 15:53:54 -0700 Message-Id: <20220403225354.2492-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, linux-tegra@vger.kernel.org, Thierry Reding Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Add @cache description to eliminate a kernel-doc warning. include/linux/host1x.h:104: warning: Function parameter or member 'cache' not described in 'host1x_client' Fixes: 1f39b1dfa53c ("drm/tegra: Implement buffer object cache") Signed-off-by: Randy Dunlap Cc: Thierry Reding Cc: linux-tegra@vger.kernel.org Cc: David Airlie Cc: Daniel Vetter Cc: dri-devel@lists.freedesktop.org --- include/linux/host1x.h | 1 + 1 file changed, 1 insertion(+) --- lnx-518-rc1.orig/include/linux/host1x.h +++ lnx-518-rc1/include/linux/host1x.h @@ -81,6 +81,7 @@ struct host1x_client_ops { * @parent: pointer to parent structure * @usecount: reference count for this structure * @lock: mutex for mutually exclusive concurrency + * @cache: host1x buffer object cache */ struct host1x_client { struct list_head list;