diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2012-03-19 00:23:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-22 18:49:18 -0400 |
commit | 1f1e6e523e43e312c0e0d38c09828d53e9f709fc (patch) | |
tree | 8bf08328cb84dff0bc7a120a1606547e1938cbbd /fs/dcache.c | |
parent | f132c5be05e407a99cf582347a2ae0120acd3ad7 (diff) |
fs: fix kernel-doc warnings in dcache.c
Fix kernel-doc warnings in fs/dcache.c:
Warning(fs/dcache.c:1743): No description found for parameter 'seqp'
Warning(fs/dcache.c:1743): Excess function parameter 'seq' description in '__d_lookup_rcu'
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/dcache.c')
-rw-r--r-- | fs/dcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dcache.c b/fs/dcache.c index e441941c834d..2b55bd0c1061 100644 --- a/fs/dcache.c +++ b/fs/dcache.c | |||
@@ -1713,7 +1713,7 @@ EXPORT_SYMBOL(d_add_ci); | |||
1713 | * __d_lookup_rcu - search for a dentry (racy, store-free) | 1713 | * __d_lookup_rcu - search for a dentry (racy, store-free) |
1714 | * @parent: parent dentry | 1714 | * @parent: parent dentry |
1715 | * @name: qstr of name we wish to find | 1715 | * @name: qstr of name we wish to find |
1716 | * @seq: returns d_seq value at the point where the dentry was found | 1716 | * @seqp: returns d_seq value at the point where the dentry was found |
1717 | * @inode: returns dentry->d_inode when the inode was found valid. | 1717 | * @inode: returns dentry->d_inode when the inode was found valid. |
1718 | * Returns: dentry, or NULL | 1718 | * Returns: dentry, or NULL |
1719 | * | 1719 | * |