From patchwork Wed Jan 16 22:34:36 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Corbet X-Patchwork-Id: 155774 Delivered-To: patch@linaro.org Received: by 2002:a02:48:0:0:0:0:0 with SMTP id 69csp1215209jaa; Wed, 16 Jan 2019 14:34:40 -0800 (PST) X-Google-Smtp-Source: ALg8bN6Mm9ifjUc9kiWFL0y5NlJ7fwHK4gbXR7NZa5rYG7E3pwE7ek5ZyvYeZERasU8oi0mxZmg1 X-Received: by 2002:a62:5b44:: with SMTP id p65mr12046086pfb.47.1547678080735; Wed, 16 Jan 2019 14:34:40 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1547678080; cv=none; d=google.com; s=arc-20160816; b=ra9os2RM1CPrCezhuOgUkka3Vo28WqNEMTNN7748b+s36TOxUyIHQg5HRUk23eKdq2 5bETzWD8rKwYzigclBb7C9PYJQwbm2XEpXElki64BlsBaY8zS0RI4T30JojH+eDjbm4e Wc2ZdH+N8QHoGeO/gMAt7eSrxzEpwBkKyOeLAaNw8w53A/XBRWlUjJh8xvzApfVaR21F gEO8pphPuBE96CgvI+CfeIZXQEnLD9fN7TdlwlMJzoBJA68WP9wTt+Crj1INa3vAMIi/ BDzi2s/UyS5GYSDVq3L0ZM4YrOT0XRVKuEVytlZmLRTbIW7RfzVDgr8vMTZDoA9Nf+VK NwQA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :organization:message-id:subject:cc:to:from:date; bh=H08CYmPwtp1/f9FgBaqjDrSXUPLaRt6Wop8m+6QgUKE=; b=tBjWwlAbf+9GEGa67XU4p1tzD658aevBAIyToVWkHqXLIfWuIaUz5hwgZwzU4Rh4Lx bS7ayNSPn+5NmGoSRo1/tnxvscYJ6UJDQgHtCz3xVREYX9re1F1QsQGvsWoFxvjU781x KcX9RyTdSoheIFtrJlLdnJCuSQmyzGaOxnBLbhd6GW79rnWUHGbBjx/XzSlci9+3TzUF nf13vSR48BGhE6CT2/IuNgbGOwm/jmIFtZv7Y4ZX+g3B6eFdNiUZEhgxPdFtKhitxP66 +0+huQX7QkV8OZW8jrpnicVn8KTeDuyIhyY64TRNUK42ObKy0rzgNuGI6CN3fDiHkJpM 1LEg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id x10si227232pgl.209.2019.01.16.14.34.40; Wed, 16 Jan 2019 14:34:40 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1733288AbfAPWei (ORCPT + 10 others); Wed, 16 Jan 2019 17:34:38 -0500 Received: from ms.lwn.net ([45.79.88.28]:52788 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732911AbfAPWei (ORCPT ); Wed, 16 Jan 2019 17:34:38 -0500 Received: from lwn.net (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id CDF81300; Wed, 16 Jan 2019 22:34:37 +0000 (UTC) Date: Wed, 16 Jan 2019 15:34:36 -0700 From: Jonathan Corbet To: Sumit Semwal Cc: dri-devel@lists.freedesktop.org, LKML Subject: [PATCH] dma-buf: Fix kerneldoc comment for struct dma_fence_array Message-ID: <20190116153436.3b244cda@lwn.net> Organization: LWN.net MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The kerneldoc comment for struct dma_fence_array lacks a description of the "work" member, leading to this docs-build warning: ./include/linux/dma-fence-array.h:54: warning: Function parameter or member 'work' not described in 'dma_fence_array' Add a description and make the warning go away. Signed-off-by: Jonathan Corbet --- Hopefully I've sent this to the right place; perhaps this file needs to be added to the MAINTAINERS entry? include/linux/dma-fence-array.h | 1 + 1 file changed, 1 insertion(+) -- 2.20.1 diff --git a/include/linux/dma-fence-array.h b/include/linux/dma-fence-array.h index bc8940ca280d..c0ff417b4770 100644 --- a/include/linux/dma-fence-array.h +++ b/include/linux/dma-fence-array.h @@ -40,6 +40,7 @@ struct dma_fence_array_cb { * @num_fences: number of fences in the array * @num_pending: fences in the array still pending * @fences: array of the fences + * @work: internal irq_work function */ struct dma_fence_array { struct dma_fence base;