From patchwork Wed Jun 24 16:18:14 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 32208 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n5OGIL2c005375 for ; Wed, 24 Jun 2009 16:18:22 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754498AbZFXQSR (ORCPT ); Wed, 24 Jun 2009 12:18:17 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754410AbZFXQSR (ORCPT ); Wed, 24 Jun 2009 12:18:17 -0400 Received: from acsinet12.oracle.com ([141.146.126.234]:28802 "EHLO acsinet12.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751976AbZFXQSR (ORCPT ); Wed, 24 Jun 2009 12:18:17 -0400 Received: from acsinet15.oracle.com (acsinet15.oracle.com [141.146.126.227]) by acsinet12.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id n5OGIDD4012616 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 24 Jun 2009 16:18:14 GMT Received: from abhmt004.oracle.com (abhmt004.oracle.com [141.146.116.13]) by acsinet15.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id n5OGJjfq011168; Wed, 24 Jun 2009 16:19:45 GMT Received: from [192.168.1.4] (/98.108.130.97) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Wed, 24 Jun 2009 09:18:15 -0700 Message-ID: <4A4251C6.1040606@oracle.com> Date: Wed, 24 Jun 2009 09:18:14 -0700 From: Randy Dunlap Organization: Oracle Linux Engineering User-Agent: Thunderbird 2.0.0.6 (X11/20070801) MIME-Version: 1.0 To: "linux-pci@vger.kernel.org" , "jbarnes@virtuousgeek.org" Subject: [PATCH] pci: fix kernel-doc warnings X-Source-IP: abhmt004.oracle.com [141.146.116.13] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A010201.4A4251C8.0126:SCFSTAT5015188,ss=1,fgs=0 Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org From: Randy Dunlap Fix missing kernel-doc in pci subsystem. Signed-off-by: Randy Dunlap --- drivers/pci/hotplug/pci_hotplug_core.c | 2 ++ drivers/pci/slot.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) --- linux-2.6.30-git22.orig/drivers/pci/hotplug/pci_hotplug_core.c +++ linux-2.6.30-git22/drivers/pci/hotplug/pci_hotplug_core.c @@ -555,6 +555,8 @@ static struct hotplug_slot *get_slot_fro * @slot: pointer to the &struct hotplug_slot to register * @devnr: device number * @name: name registered with kobject core + * @owner: caller module owner + * @mod_name: caller module name * * Registers a hotplug slot with the pci hotplug subsystem, which will allow * userspace interaction to the slot. --- linux-2.6.30-git22.orig/drivers/pci/slot.c +++ linux-2.6.30-git22/drivers/pci/slot.c @@ -311,7 +311,7 @@ EXPORT_SYMBOL_GPL(pci_destroy_slot); #include /** * pci_hp_create_link - create symbolic link to the hotplug driver module. - * @slot: struct pci_slot + * @pci_slot: struct pci_slot * * Helper function for pci_hotplug_core.c to create symbolic link to * the hotplug driver module. @@ -334,7 +334,7 @@ EXPORT_SYMBOL_GPL(pci_hp_create_module_l /** * pci_hp_remove_link - remove symbolic link to the hotplug driver module. - * @slot: struct pci_slot + * @pci_slot: struct pci_slot * * Helper function for pci_hotplug_core.c to remove symbolic link to * the hotplug driver module.