diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2011-03-26 20:27:47 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-28 02:30:19 (GMT) |
commit | b6d0ad686da95fa85ce0c583ec35017bf1583563 (patch) | |
tree | 357c740a9d8bb37397ead382dc3dd302f91d0e28 /fs | |
parent | 6213cfe82461e39219a3b06ecf1d0679b4c0657f (diff) | |
download | linux-fsl-qoriq-b6d0ad686da95fa85ce0c583ec35017bf1583563.tar.xz |
fs: fix inode.c kernel-doc warning
Fix inode.c kernel-doc fatal error: 2 comment sections have the same name:
Error(fs/inode.c:1171): duplicate section name 'Note'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1167,7 +1167,7 @@ EXPORT_SYMBOL(igrab); * Note: I_NEW is not waited upon so you have to be very careful what you do * with the returned inode. You probably should be using ilookup5() instead. * - * Note: @test is called with the inode_hash_lock held, so can't sleep. + * Note2: @test is called with the inode_hash_lock held, so can't sleep. */ struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval, int (*test)(struct inode *, void *), void *data) |