diff options
author | Christoph Hellwig <hch@lst.de> | 2008-02-09 00:10:16 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-09 11:08:33 -0800 |
commit | f6a4c8bdb30370991905941ddf85d28dde7370b1 (patch) | |
tree | 69b1421076167e069164c0cca3673575c0d22db4 /fs/ioctl.c | |
parent | 60c12b1202a60eabb1c61317e5d2678fcea9893f (diff) | |
download | kernel_samsung_aries-f6a4c8bdb30370991905941ddf85d28dde7370b1.zip kernel_samsung_aries-f6a4c8bdb30370991905941ddf85d28dde7370b1.tar.gz kernel_samsung_aries-f6a4c8bdb30370991905941ddf85d28dde7370b1.tar.bz2 |
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>
Diffstat (limited to 'fs/ioctl.c')
-rw-r--r-- | fs/ioctl.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -18,12 +18,12 @@ /** * vfs_ioctl - call filesystem specific ioctl methods - * @filp: [in] open file to invoke ioctl method on - * @cmd: [in] ioctl command to execute - * @arg: [in/out] command-specific argument for ioctl + * @filp: open file to invoke ioctl method on + * @cmd: ioctl command to execute + * @arg: command-specific argument for ioctl * * Invokes filesystem specific ->unlocked_ioctl, if one exists; otherwise - * invokes * filesystem specific ->ioctl method. If neither method exists, + * invokes filesystem specific ->ioctl method. If neither method exists, * returns -ENOTTY. * * Returns 0 on success, -errno on error. |