Commit 0bc02f3fa433a98631a932e77c4b1f873da35aee

Authored by Randy Dunlap
Committed by Linus Torvalds
1 parent 67faaada1e

fs/inode: fix kernel-doc notation

Fix kernel-doc notation:

Warning(linux-2.6.28-git3//fs/inode.c:120): No description found for parameter 'sb'
Warning(linux-2.6.28-git3//fs/inode.c:120): No description found for parameter 'inode'
Warning(linux-2.6.28-git3//fs/inode.c:588): No description found for parameter 'sb'
Warning(linux-2.6.28-git3//fs/inode.c:588): No description found for parameter 'inode'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 4 additions and 4 deletions Side-by-side Diff

... ... @@ -110,8 +110,8 @@
110 110  
111 111 /**
112 112 * inode_init_always - perform inode structure intialisation
113   - * @sb - superblock inode belongs to.
114   - * @inode - inode to initialise
  113 + * @sb: superblock inode belongs to
  114 + * @inode: inode to initialise
115 115 *
116 116 * These are initializations that need to be done on every inode
117 117 * allocation as the fields are not initialised by slab allocation.
... ... @@ -576,8 +576,8 @@
576 576  
577 577 /**
578 578 * inode_add_to_lists - add a new inode to relevant lists
579   - * @sb - superblock inode belongs to.
580   - * @inode - inode to mark in use
  579 + * @sb: superblock inode belongs to
  580 + * @inode: inode to mark in use
581 581 *
582 582 * When an inode is allocated it needs to be accounted for, added to the in use
583 583 * list, the owning superblock and the inode hash. This needs to be done under