From patchwork Mon Oct 30 00:07:11 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10031837 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 28A0E600C5 for ; Mon, 30 Oct 2017 00:07:16 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1A41D28526 for ; Mon, 30 Oct 2017 00:07:16 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0DC7128749; Mon, 30 Oct 2017 00:07:16 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 78DF128526 for ; Mon, 30 Oct 2017 00:07:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751876AbdJ3AHO (ORCPT ); Sun, 29 Oct 2017 20:07:14 -0400 Received: from merlin.infradead.org ([205.233.59.134]:51470 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751875AbdJ3AHN (ORCPT ); Sun, 29 Oct 2017 20:07:13 -0400 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:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=e8M+Io/5D1FUDMAcoURhtPtFdYKTSi2VT0d0cThvRy8=; b=WVPpXd3pNo1EAtngXLtmO/Tbur xc2BS5KgsIkMJzAR8d3JIJsmwzzJqjChsFaaxxsH5kGZMrz9UDNK0Q385sTrwi1FVdILBkG8S0ccR eiBz6tyZE0d61JM0PYFI+oQa/+tTdDSBbrLx6DxdmL97fmdNniian3glvX3BQF2IC3cehsYmeyZuY o0JQMzCtKNOh6Z9cEzp8osU/hsfCbQqWihdJd7OChpdM+RFTYeGJe/h7ntuycDH7CRJM/kEdeeAbi wXA+0LZe6elXStoEMG+pSh6rPWVjfARk63CAWoXjOWRHGVO1fyBwwxiCilygTlBU5jRj0UutV0kRM O9Pja5Ow==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlap) by merlin.infradead.org with esmtpsa (Exim 4.87 #1 (Red Hat Linux)) id 1e8xbk-0005Tr-NE; Mon, 30 Oct 2017 00:07:12 +0000 To: linux-pci , Bjorn Helgaas Cc: LKML From: Randy Dunlap Subject: [PATCH] pci: fix kernel-doc build warning Message-ID: <85dcffe7-1e6b-5735-2552-d35d127e392b@infradead.org> Date: Sun, 29 Oct 2017 17:07:11 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 Content-Language: en-US Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Fix build error in kernel-doc notation: ../drivers/pci/pci.c:3479: ERROR: Unexpected indentation. Signed-off-by: Randy Dunlap Cc: Bjorn Helgaas Cc: linux-pci@vger.kernel.org --- drivers/pci/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- lnx-414-rc7.orig/drivers/pci/pci.c +++ lnx-414-rc7/drivers/pci/pci.c @@ -3471,7 +3471,7 @@ EXPORT_SYMBOL(devm_pci_remap_cfgspace); * All operations are managed and will be undone on driver detach. * * Returns a pointer to the remapped memory or an ERR_PTR() encoded error code - * on failure. Usage example: + * on failure. Usage example:: * * res = platform_get_resource(pdev, IORESOURCE_MEM, 0); * base = devm_pci_remap_cfg_resource(&pdev->dev, res);