Commit f6a4c8bdb30370991905941ddf85d28dde7370b1

Authored by Christoph Hellwig
Committed by Linus Torvalds
1 parent 60c12b1202

fix up kerneldoc in fs/ioctl.c a little bit

- remove non-standard in/out markers
 - use tabs for formatting

Signed-off-by: Christoph Hellwig <hch@lst.de>
Cc: "Randy.Dunlap" <rdunlap@xenotime.net>
Cc: Erez Zadok <ezk@cs.sunysb.edu>
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

... ... @@ -18,12 +18,12 @@
18 18  
19 19 /**
20 20 * vfs_ioctl - call filesystem specific ioctl methods
21   - * @filp: [in] open file to invoke ioctl method on
22   - * @cmd: [in] ioctl command to execute
23   - * @arg: [in/out] command-specific argument for ioctl
  21 + * @filp: open file to invoke ioctl method on
  22 + * @cmd: ioctl command to execute
  23 + * @arg: command-specific argument for ioctl
24 24 *
25 25 * Invokes filesystem specific ->unlocked_ioctl, if one exists; otherwise
26   - * invokes * filesystem specific ->ioctl method. If neither method exists,
  26 + * invokes filesystem specific ->ioctl method. If neither method exists,
27 27 * returns -ENOTTY.
28 28 *
29 29 * Returns 0 on success, -errno on error.