diff options
| author | Ingo Molnar <mingo@elte.hu> | 2009-05-11 14:44:27 +0200 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-05-11 14:44:31 +0200 | 
| commit | 41fb454ebe6024f5c1e3b3cbc0abc0da762e7b51 (patch) | |
| tree | 51c50bcb67a5039448ddfa1869d7948cab1217e9 /drivers/pci/pci-sysfs.c | |
| parent | 19c1a6f5764d787113fa323ffb18be7991208f82 (diff) | |
| parent | 091bf7624d1c90cec9e578a18529f615213ff847 (diff) | |
Merge commit 'v2.6.30-rc5' into core/iommu
Merge reason: core/iommu was on an .30-rc1 base,
              update it to .30-rc5 to refresh.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers/pci/pci-sysfs.c')
| -rw-r--r-- | drivers/pci/pci-sysfs.c | 12 | 
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c index a7eb1b46a5a..85ebd02a64a 100644 --- a/drivers/pci/pci-sysfs.c +++ b/drivers/pci/pci-sysfs.c @@ -492,6 +492,7 @@ write_vpd_attr(struct kobject *kobj, struct bin_attribute *bin_attr,  /**   * pci_read_legacy_io - read byte(s) from legacy I/O port space   * @kobj: kobject corresponding to file to read from + * @bin_attr: struct bin_attribute for this file   * @buf: buffer to store results   * @off: offset into legacy I/O port space   * @count: number of bytes to read @@ -517,6 +518,7 @@ pci_read_legacy_io(struct kobject *kobj, struct bin_attribute *bin_attr,  /**   * pci_write_legacy_io - write byte(s) to legacy I/O port space   * @kobj: kobject corresponding to file to read from + * @bin_attr: struct bin_attribute for this file   * @buf: buffer containing value to be written   * @off: offset into legacy I/O port space   * @count: number of bytes to write @@ -733,9 +735,9 @@ pci_mmap_resource_wc(struct kobject *kobj, struct bin_attribute *attr,  /**   * pci_remove_resource_files - cleanup resource files - * @dev: dev to cleanup + * @pdev: dev to cleanup   * - * If we created resource files for @dev, remove them from sysfs and + * If we created resource files for @pdev, remove them from sysfs and   * free their resources.   */  static void @@ -793,9 +795,9 @@ static int pci_create_attr(struct pci_dev *pdev, int num, int write_combine)  /**   * pci_create_resource_files - create resource files in sysfs for @dev - * @dev: dev in question + * @pdev: dev in question   * - * Walk the resources in @dev creating files for each resource available. + * Walk the resources in @pdev creating files for each resource available.   */  static int pci_create_resource_files(struct pci_dev *pdev)  { @@ -829,6 +831,7 @@ void __weak pci_remove_resource_files(struct pci_dev *dev) { return; }  /**   * pci_write_rom - used to enable access to the PCI ROM display   * @kobj: kernel object handle + * @bin_attr: struct bin_attribute for this file   * @buf: user input   * @off: file offset   * @count: number of byte in input @@ -852,6 +855,7 @@ pci_write_rom(struct kobject *kobj, struct bin_attribute *bin_attr,  /**   * pci_read_rom - read a PCI ROM   * @kobj: kernel object handle + * @bin_attr: struct bin_attribute for this file   * @buf: where to put the data we read from the ROM   * @off: file offset   * @count: number of bytes to read  | 
