From patchwork Sun Aug 19 00:37:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Randy.Dunlap" X-Patchwork-Id: 178505 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id C49A42C0085 for ; Sun, 19 Aug 2012 10:37:56 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750931Ab2HSAhz (ORCPT ); Sat, 18 Aug 2012 20:37:55 -0400 Received: from oproxy12-pub.bluehost.com ([50.87.16.10]:46039 "HELO oproxy12-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1750759Ab2HSAhz (ORCPT ); Sat, 18 Aug 2012 20:37:55 -0400 Received: (qmail 31337 invoked by uid 0); 19 Aug 2012 00:37:54 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by oproxy12.bluehost.com with SMTP; 19 Aug 2012 00:37:54 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xenotime.net; s=default; h=Content-Transfer-Encoding:Content-Type:Subject:CC:To:MIME-Version:From:Date:Message-ID; bh=5rKDb274Gv+2Ggln/+9dztFnsnGh7T2FdqAIo7mgyME=; b=uRgF156EmZBGHgBo6okLu4oPJS5G3xWlCmVJjRO2mdVtISxUBt/h/U5d9JoZkvFe9OIbuNrfPhjlh6p1AAYVJqFXikC/aklf6aRslRlyb9OUQb4uAPZ1v4nV1eMx45eh; Received: from [50.53.38.135] (port=40645 helo=[192.168.1.2]) by box742.bluehost.com with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.76) (envelope-from ) id 1T2tWc-0006b4-6v; Sat, 18 Aug 2012 18:37:54 -0600 Message-ID: <50303561.4020707@xenotime.net> Date: Sat, 18 Aug 2012 17:37:53 -0700 From: Randy Dunlap User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110323 Thunderbird/3.1.9 MIME-Version: 1.0 To: Bjorn Helgaas CC: linux-pci@vger.kernel.org Subject: [PATCH] pci: fix drivers/pci/pci.c kernel-doc warnings X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org From: Randy Dunlap Fix kernel-doc warnings in drivers/pci/pci.c: Warning(drivers/pci/pci.c:1550): No description found for parameter 'pci_dev' Warning(drivers/pci/pci.c:1550): Excess function parameter 'dev' description in 'pci_wakeup' 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(-) -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- lnx-36-rc2.orig/drivers/pci/pci.c +++ lnx-36-rc2/drivers/pci/pci.c @@ -1543,7 +1543,7 @@ void pci_pme_wakeup_bus(struct pci_bus * /** * pci_wakeup - Wake up a PCI device - * @dev: Device to handle. + * @pci_dev: Device to handle. * @ign: ignored parameter */ static int pci_wakeup(struct pci_dev *pci_dev, void *ign)