From patchwork Mon Jul 17 21:00:48 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Corbet X-Patchwork-Id: 108027 Delivered-To: patch@linaro.org Received: by 10.140.101.44 with SMTP id t41csp5011117qge; Mon, 17 Jul 2017 14:01:26 -0700 (PDT) X-Received: by 10.84.133.226 with SMTP id f89mr32014046plf.11.1500325285976; Mon, 17 Jul 2017 14:01:25 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1500325285; cv=none; d=google.com; s=arc-20160816; b=J42ZFFzvgBIAwpxU7MYqGClruZrou7tOjIVSLBlq0RcZRlTS9vj0I6sSHjgpiR+spH rVDgvLPjMaZwdxgRRhqhTbX2BqcuQTxzCq42517LJhl+5RylPvBXpGxfoC9p0e1z08Ri +Hi+rkTt6MmWDcui4KSAiu0p+wZEvX6I6mk1DSA/XoKJeonr9bimK/MRFhbZlM+plnR5 AS2eSrJWGnSvS25/HRl9ALDre47Kivo0n3t3Hsk6MxiunR9C+uG07ayTz0x0nGkWomD3 9e7KRGOAzfpC1TrdXH7ssSeWoRDJl+Bev9tSt7NTAjYTIbHv4w5F78LsNyKvPQdLm/6I i2wg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=sender:errors-to:content-transfer-encoding:mime-version :list-subscribe:list-help:list-post:list-archive:list-unsubscribe :list-id:precedence:cc:references:in-reply-to:message-id:date :subject:to:from:delivered-to:arc-authentication-results; bh=e7+rCVwlo0U/7EqykyKBJtRoQik65WhUOm+NT6zTV+o=; b=T++CwaxlFSwsdVcQLI0KbHXTxgJvyRZaDKyuVHwbbqezwofZQxVX1gWEEMLrXeTw7P hNfNKoyoDLrzvPqHOuVvEtB/67b7HlecTfZffNVYtzDz45ESq/84jb+8oZyACJygKI/1 5XwHE/3pfQqGXMJWK8C3dAiOPI+dhYbBAafsybSJ3F/XggQi0HxDM5ZXT+pe7qixRDi3 5AUzmC4/gcEei0TlBC3VTGhKEoQ+A+6eC+mIBhxsCwCPS+xr5YqKlcaN5OMHglRlAvZl j9IBig9ScYcwKDXbXatICw+HebJVuZdOGCp7d/YbLRZaKA8b02zxvTOKQ/STfxH3TIVZ dY6w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of dri-devel-bounces@lists.freedesktop.org designates 131.252.210.177 as permitted sender) smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Return-Path: Received: from gabe.freedesktop.org (gabe.freedesktop.org. [131.252.210.177]) by mx.google.com with ESMTPS id 66si164303plb.428.2017.07.17.14.01.25 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 17 Jul 2017 14:01:25 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of dri-devel-bounces@lists.freedesktop.org designates 131.252.210.177 as permitted sender) client-ip=131.252.210.177; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of dri-devel-bounces@lists.freedesktop.org designates 131.252.210.177 as permitted sender) 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 B549C6E2A4; Mon, 17 Jul 2017 21:01:23 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) by gabe.freedesktop.org (Postfix) with ESMTPS id AC9936E2A1 for ; Mon, 17 Jul 2017 21:01:22 +0000 (UTC) Received: from tpad.lwn.net (localhost [127.0.0.1]) by ms.lwn.net (Postfix) with ESMTPA id 446BA19BC; Mon, 17 Jul 2017 21:01:22 +0000 (UTC) From: Jonathan Corbet To: linux-doc@vger.kernel.org Subject: [PATCH 7/7] docs: Use :internal: for include/drm/drm_syncobj.h Date: Mon, 17 Jul 2017 15:00:48 -0600 Message-Id: <20170717210048.16400-8-corbet@lwn.net> X-Mailer: git-send-email 2.9.4 In-Reply-To: <20170717210048.16400-1-corbet@lwn.net> References: <20170717210048.16400-1-corbet@lwn.net> Cc: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, Jonathan Corbet X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Documentation/gpu/drm-mm.rst includes from include/drm/drm_syncobj.h with :export:, but this is a header file without export directives. That results in this warning: ./include/drm/drm_syncobj.h:1: warning: no structured comments found ...and a failure to obtain the documentation from that file. Switch to :internal: instead to make both problems go away. Cc: dri-devel@lists.freedesktop.org Signed-off-by: Jonathan Corbet --- Documentation/gpu/drm-mm.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/gpu/drm-mm.rst b/Documentation/gpu/drm-mm.rst index 9412798645c1..300898298bf6 100644 --- a/Documentation/gpu/drm-mm.rst +++ b/Documentation/gpu/drm-mm.rst @@ -492,7 +492,7 @@ DRM Sync Objects :doc: Overview .. kernel-doc:: include/drm/drm_syncobj.h - :export: + :internal: .. kernel-doc:: drivers/gpu/drm/drm_syncobj.c :export: