From patchwork Mon Jul 17 21:00:42 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Corbet X-Patchwork-Id: 108031 Delivered-To: patch@linaro.org Received: by 10.140.101.44 with SMTP id t41csp5011678qge; Mon, 17 Jul 2017 14:01:54 -0700 (PDT) X-Received: by 10.84.231.140 with SMTP id g12mr32703174plk.256.1500325314707; Mon, 17 Jul 2017 14:01:54 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1500325314; cv=none; d=google.com; s=arc-20160816; b=Y+I/uClFEbDUoX4DTTHnr5spkzD7iD6bDPnm8O0JmGq4feFMB7D3jj19XorgnZFHlX NgYRTLv8cCVQR2NzrAZnWMYeWmkmluWfb7rJEQ3+49jlWrojRrrMIrVi7ubW5qgjhyOt 6ea+2Blrdh0VuiattQeDGCI1lU/++uibRAJGALlWmba16iffhem+nve0k4kJAHBRTt8K yE2HLTaQZ0H4n2X5YLB38w1cqgsGl+xlC+BT3EzNCb1Q5xZ66RyEa7G6K51Wi7qHOJvp 2pxvhyKYPexwOrRysUP+RCIMGwfc988GpZ4zdt3vmE0C60UPWvLx4Bjit9AM05XT9BQR ZYuQ== 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=Y15PrsCUHAan547sCQB7vrzCSd8bB2Ycqf+1AUBy4WE=; b=UVAplRUOXq/1vbhLktMDx2xkrbtW1BFDYs7VqrHXG3/QB8XEmjnTiFqnq4FN0Fi3Bb eeZL2tNKZSgg2b2Kta+GQ0vj/dPAHVnu0SwBG/VhEE/NjcgjpuRE8C6bO9aSo9TggBKd vNwsutGw6rZa32P52hMjGQ6v1NH5mCvbnwOjJepOicsKzWucN9coqAnLDhYyoUnG8xJS GlvXQwNgMl8E4Z+b0PBbUJlSHVT0HrvYwDqct8rSCNI7CmC7XerUeQNdavpispXRV78M KqK5Vgbb8X8iWg690VgQmSZIKR1M4Dd6D9PzPjHq9TcMuvvvpoNZfyW8/8g83p8rwQAQ uVXg== 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 f15si180890pfj.33.2017.07.17.14.01.54 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 17 Jul 2017 14:01:54 -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 5E3576E29E; Mon, 17 Jul 2017 21:01:22 +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 C17A86E297 for ; Mon, 17 Jul 2017 21:01:20 +0000 (UTC) Received: from tpad.lwn.net (localhost [127.0.0.1]) by ms.lwn.net (Postfix) with ESMTPA id 614DA2B9; Mon, 17 Jul 2017 21:01:20 +0000 (UTC) From: Jonathan Corbet To: linux-doc@vger.kernel.org Subject: [PATCH 1/7] docs: Get module_init() docs from module.h Date: Mon, 17 Jul 2017 15:00:42 -0600 Message-Id: <20170717210048.16400-2-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" The docs build complains: ./include/linux/init.h:1: warning: no structured comments found The problem is that the comments in question were moved to module.h in commit 0fd972a7d91d (module: relocate module_init from init.h to module.h). Fix basics.rst to match. Signed-off-by: Jonathan Corbet --- Documentation/driver-api/basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/driver-api/basics.rst b/Documentation/driver-api/basics.rst index ab82250c7727..cbfb5a825077 100644 --- a/Documentation/driver-api/basics.rst +++ b/Documentation/driver-api/basics.rst @@ -4,7 +4,7 @@ Driver Basics Driver Entry and Exit points ---------------------------- -.. kernel-doc:: include/linux/init.h +.. kernel-doc:: include/linux/module.h :internal: Driver device table