From patchwork Mon Aug 31 04:17:13 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11745981 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id B6AB81667 for ; Mon, 31 Aug 2020 09:13:03 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id 940DD20936 for ; Mon, 31 Aug 2020 09:13:03 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="PMGr1dUj" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 940DD20936 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5046D89E3F; Mon, 31 Aug 2020 09:12:34 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by gabe.freedesktop.org (Postfix) with ESMTPS id 3F09889E15 for ; Mon, 31 Aug 2020 04:17:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-ID: Content-Description:In-Reply-To:References; bh=hk9MKuYTLLrbYPyororI+1P9k/AQL7zML5WUOPd+C6c=; b=PMGr1dUjzsSLLZezD3HIALlL8q HqT6THcAJCmcjDT59RzuD2Of87nr/15+1XH4pvm/KedAGJNyHMlcfeoEdih24melWClTbOPxhFKF7 Az17djVhyAk0DWJZQU2oIT6Hld0Tyg+ElHrhba4u5eWYUL5I6hI6hJ2EbLdS1oxHLBS5nvJfkG6rn yRSJ98sR65k3RQ8vxe8g36o2A8oDyzU8hQ1Hl1QalwZpY2Urgc1XUzJCZLCcT62uKrWpz7WMt4TSQ IpD6mmFTYqGhZw05LuBWG/dIOmqCWBNn3seu0lN8NHs7fWa2cSzMZpfJTKlMtDHXhpYxIvlVB3LMB aXLFxgCQ==; Received: from [2601:1c0:6280:3f0:897c:6038:c71d:ecac] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1kCbFt-000648-LC; Mon, 31 Aug 2020 04:17:18 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Subject: [PATCH] dma-buf: fix kernel-doc warning in dma-fence.c Date: Sun, 30 Aug 2020 21:17:13 -0700 Message-Id: <20200831041713.12571-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 X-Mailman-Approved-At: Mon, 31 Aug 2020 09:12:28 +0000 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: Gustavo Padovan , Randy Dunlap , dri-devel@lists.freedesktop.org, =?utf-8?q?Christian_K=C3=B6nig?= , linux-media@vger.kernel.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Add @cookie to dma_fence_end_signalling() to prevent kernel-doc warning in drivers/dma-buf/dma-fence.c: ../drivers/dma-buf/dma-fence.c:291: warning: Function parameter or member 'cookie' not described in 'dma_fence_end_signalling' Signed-off-by: Randy Dunlap Cc: Sumit Semwal Cc: Gustavo Padovan Cc: Christian König Cc: linux-media@vger.kernel.org Cc: dri-devel@lists.freedesktop.org Acked-by: Christian König --- drivers/dma-buf/dma-fence.c | 1 + 1 file changed, 1 insertion(+) --- lnx-59-rc3.orig/drivers/dma-buf/dma-fence.c +++ lnx-59-rc3/drivers/dma-buf/dma-fence.c @@ -283,6 +283,7 @@ EXPORT_SYMBOL(dma_fence_begin_signalling /** * dma_fence_end_signalling - end a critical DMA fence signalling section + * @cookie: opaque cookie from dma_fence_begin_signalling() * * Closes a critical section annotation opened by dma_fence_begin_signalling(). */