diff options
author | Martin Waitz <tali@admingilde.org> | 2005-05-01 08:59:26 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-01 08:59:26 -0700 |
commit | 67be2dd1bace0ec7ce2dbc1bba3f8df3d7be597e (patch) | |
tree | 317d114a0288d3b19ef9902f94b536a5a8731dbd /fs/seq_file.c | |
parent | 6013d5445f9a6d0b28090027868f455c5012d1cc (diff) | |
download | op-kernel-dev-67be2dd1bace0ec7ce2dbc1bba3f8df3d7be597e.zip op-kernel-dev-67be2dd1bace0ec7ce2dbc1bba3f8df3d7be597e.tar.gz |
[PATCH] DocBook: fix some descriptions
Some KernelDoc descriptions are updated to match the current code.
No code changes.
Signed-off-by: Martin Waitz <tali@admingilde.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/seq_file.c')
-rw-r--r-- | fs/seq_file.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/seq_file.c b/fs/seq_file.c index 650c43b..38ef913 100644 --- a/fs/seq_file.c +++ b/fs/seq_file.c @@ -51,7 +51,10 @@ EXPORT_SYMBOL(seq_open); /** * seq_read - ->read() method for sequential files. - * @file, @buf, @size, @ppos: see file_operations method + * @file: the file to read from + * @buf: the buffer to read to + * @size: the maximum number of bytes to read + * @ppos: the current position in the file * * Ready-made ->f_op->read() */ @@ -219,7 +222,9 @@ Eoverflow: /** * seq_lseek - ->llseek() method for sequential files. - * @file, @offset, @origin: see file_operations method + * @file: the file in question + * @offset: new position + * @origin: 0 for absolute, 1 for relative position * * Ready-made ->f_op->llseek() */ |