aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/pci/pci-driver.c1
-rw-r--r--drivers/pci/pci.c2
-rw-r--r--fs/sysfs/file.c2
-rw-r--r--lib/kobject.c1
4 files changed, 4 insertions, 2 deletions
diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c
index 4438ae1ede4f..a3c1755b2f28 100644
--- a/drivers/pci/pci-driver.c
+++ b/drivers/pci/pci-driver.c
@@ -415,6 +415,7 @@ static struct kobj_type pci_driver_kobj_type = {
415 * __pci_register_driver - register a new pci driver 415 * __pci_register_driver - register a new pci driver
416 * @drv: the driver structure to register 416 * @drv: the driver structure to register
417 * @owner: owner module of drv 417 * @owner: owner module of drv
418 * @mod_name: module name string
418 * 419 *
419 * Adds the driver structure to the list of registered drivers. 420 * Adds the driver structure to the list of registered drivers.
420 * Returns a negative value on error, otherwise 0. 421 * Returns a negative value on error, otherwise 0.
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 8b44cff2c176..a7b869e24650 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -1300,7 +1300,7 @@ pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
1300 1300
1301/** 1301/**
1302 * pci_select_bars - Make BAR mask from the type of resource 1302 * pci_select_bars - Make BAR mask from the type of resource
1303 * @pdev: the PCI device for which BAR mask is made 1303 * @dev: the PCI device for which BAR mask is made
1304 * @flags: resource type mask to be selected 1304 * @flags: resource type mask to be selected
1305 * 1305 *
1306 * This helper routine makes bar mask from the type of resource. 1306 * This helper routine makes bar mask from the type of resource.
diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c
index c0e117649a4d..98b0910ad80c 100644
--- a/fs/sysfs/file.c
+++ b/fs/sysfs/file.c
@@ -54,7 +54,7 @@ static struct sysfs_ops subsys_sysfs_ops = {
54/** 54/**
55 * add_to_collection - add buffer to a collection 55 * add_to_collection - add buffer to a collection
56 * @buffer: buffer to be added 56 * @buffer: buffer to be added
57 * @node inode of set to add to 57 * @node: inode of set to add to
58 */ 58 */
59 59
60static inline void 60static inline void
diff --git a/lib/kobject.c b/lib/kobject.c
index 2782f49e906e..4572809d1b95 100644
--- a/lib/kobject.c
+++ b/lib/kobject.c
@@ -326,6 +326,7 @@ int kobject_rename(struct kobject * kobj, const char *new_name)
326/** 326/**
327 * kobject_rename - change the name of an object 327 * kobject_rename - change the name of an object
328 * @kobj: object in question. 328 * @kobj: object in question.
329 * @new_parent: object's new parent
329 * @new_name: object's new name 330 * @new_name: object's new name
330 */ 331 */
331 332