From patchwork Mon Jul 17 21:00:46 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Corbet X-Patchwork-Id: 108030 Delivered-To: patch@linaro.org Received: by 10.140.101.44 with SMTP id t41csp5011329qge; Mon, 17 Jul 2017 14:01:38 -0700 (PDT) X-Received: by 10.99.146.13 with SMTP id o13mr30223008pgd.54.1500325297915; Mon, 17 Jul 2017 14:01:37 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1500325297; cv=none; d=google.com; s=arc-20160816; b=C4Yel4MX4kPYMAb/o16wp3Hzz3PSISrhPx+aju+ba24/b0dULPcwxQ2pJqYBk/AIqk 6C+Kf6hLGwjs6QRHpL7do6VFO4otor/B0eGGfVntIrrLez0WnYNxJjWi7W/lmjLQ+Los WJNnAs974iMVhACK5thQokaW6nRoQYLJshhqFRADlvO1RoOVv+6O1zKO8T0F4X6KO165 gdI2NsMpi5NGP8qmbw+/1Pk1YMaoR2Rwq5qFZsDAkn7ytD4HR1kPvh1sYHHDzrWaeftE wqkP+nao/1FwU8WncAQp4FxcJIM9XyjE0pAQtngePzOl/Cpv+iX9DnlL/TeUVVaBXmhL d+FA== 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=l/jJk48MNYelqOeLAn2cQZCbpbe4rMlzTUCgFJhlQOw=; b=K6wf2ZYU1XoRvEOngUw0LDP3jBlSKxN0f5G2LzKjy1iAbfhS5pzkSWhlPxUeosDqqk BVMVl83A5bPQGUm1hoposWaE5mMMfzCqWszo9UmQD8T/WTnlIlnUjw5zQk7zq+2AmGSl IYAmGlgPXSQvZJ7sT2ujioFnUWHMcJ6005VnvgqAFCyHf9DwTI0l28LEusqYhoFofYOM Pha+H/f3VSkrdC3pJLF0yn51E/J8xx5zkHrnmjuHVC5FjSdKST61r97pRDhxKVu3XYRa oaMKEfNaJvGofsDpS+ACg4S8IcSbXGUk+qiw2JWPFH3lMo2os8rXwk/PEsGrrq2QjqRj 0lPA== 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 b129si164582pgc.310.2017.07.17.14.01.37 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 17 Jul 2017 14:01:37 -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 D3DE46E2AF; Mon, 17 Jul 2017 21:01:27 +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 0E8026E297 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 A2A6A19BA; Mon, 17 Jul 2017 21:01:21 +0000 (UTC) From: Jonathan Corbet To: linux-doc@vger.kernel.org Subject: [PATCH 5/7] docs: Do not include from drivers/scsi/constants.c Date: Mon, 17 Jul 2017 15:00:46 -0600 Message-Id: <20170717210048.16400-6-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 only function of interest in that file was scsi_print_status(). That function was removed in commit 7ac7076344d9 (scsi: remove scsi_print_status()) but the docs were not changed to match, yielding this warning: ./drivers/scsi/constants.c:1: warning: no structured comments found There's nothing there anymore, so just remove that section from the docs. Signed-off-by: Jonathan Corbet --- Documentation/driver-api/scsi.rst | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Documentation/driver-api/scsi.rst b/Documentation/driver-api/scsi.rst index 859fb672319f..5a2aa7a377d9 100644 --- a/Documentation/driver-api/scsi.rst +++ b/Documentation/driver-api/scsi.rst @@ -224,14 +224,6 @@ mid to lowlevel SCSI driver interface .. kernel-doc:: drivers/scsi/hosts.c :export: -drivers/scsi/constants.c -~~~~~~~~~~~~~~~~~~~~~~~~ - -mid to lowlevel SCSI driver interface - -.. kernel-doc:: drivers/scsi/constants.c - :export: - Transport classes -----------------