Commit 817e1d90 authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Torvalds

fs/befs: kernel-doc fixes

Fix some comment errors.
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Cc: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f38f41c3
...@@ -318,7 +318,7 @@ befs_btree_find(struct super_block *sb, befs_data_stream * ds, ...@@ -318,7 +318,7 @@ befs_btree_find(struct super_block *sb, befs_data_stream * ds,
* befs_find_key - Search for a key within a node * befs_find_key - Search for a key within a node
* @sb: Filesystem superblock * @sb: Filesystem superblock
* @node: Node to find the key within * @node: Node to find the key within
* @key: Keystring to search for * @findkey: Keystring to search for
* @value: If key is found, the value stored with the key is put here * @value: If key is found, the value stored with the key is put here
* *
* finds exact match if one exists, and returns BEFS_BT_MATCH * finds exact match if one exists, and returns BEFS_BT_MATCH
...@@ -706,7 +706,7 @@ befs_bt_get_key(struct super_block *sb, befs_btree_node * node, ...@@ -706,7 +706,7 @@ befs_bt_get_key(struct super_block *sb, befs_btree_node * node,
* @key1: pointer to the first key to be compared * @key1: pointer to the first key to be compared
* @keylen1: length in bytes of key1 * @keylen1: length in bytes of key1
* @key2: pointer to the second key to be compared * @key2: pointer to the second key to be compared
* @kelen2: length in bytes of key2 * @keylen2: length in bytes of key2
* *
* Returns 0 if @key1 and @key2 are equal. * Returns 0 if @key1 and @key2 are equal.
* Returns >0 if @key1 is greater. * Returns >0 if @key1 is greater.
......
...@@ -116,7 +116,7 @@ befs_fblock2brun(struct super_block *sb, befs_data_stream * data, ...@@ -116,7 +116,7 @@ befs_fblock2brun(struct super_block *sb, befs_data_stream * data,
* befs_read_lsmylink - read long symlink from datastream. * befs_read_lsmylink - read long symlink from datastream.
* @sb: Filesystem superblock * @sb: Filesystem superblock
* @ds: Datastrem to read from * @ds: Datastrem to read from
* @buf: Buffer in which to place long symlink data * @buff: Buffer in which to place long symlink data
* @len: Length of the long symlink in bytes * @len: Length of the long symlink in bytes
* *
* Returns the number of bytes read * Returns the number of bytes read
......
...@@ -582,21 +582,21 @@ befs_utf2nls(struct super_block *sb, const char *in, ...@@ -582,21 +582,21 @@ befs_utf2nls(struct super_block *sb, const char *in,
/** /**
* befs_nls2utf - Convert NLS string to utf8 encodeing * befs_nls2utf - Convert NLS string to utf8 encodeing
* @sb: Superblock * @sb: Superblock
* @src: Input string buffer in NLS format * @in: Input string buffer in NLS format
* @srclen: Length of input string in bytes * @in_len: Length of input string in bytes
* @dest: The output string in UTF-8 format * @out: The output string in UTF-8 format
* @destlen: Length of the output buffer * @out_len: Length of the output buffer
* *
* Converts input string @src, which is in the format of the loaded NLS map, * Converts input string @in, which is in the format of the loaded NLS map,
* into a utf8 string. * into a utf8 string.
* *
* The destination string @dest is allocated by this function and the caller is * The destination string @out is allocated by this function and the caller is
* responsible for freeing it with kfree() * responsible for freeing it with kfree()
* *
* On return, *@destlen is the length of @dest in bytes. * On return, *@out_len is the length of @out in bytes.
* *
* On success, the return value is the number of utf8 characters written to * On success, the return value is the number of utf8 characters written to
* the output buffer @dest. * the output buffer @out.
* *
* On Failure, a negative number coresponding to the error code is returned. * On Failure, a negative number coresponding to the error code is returned.
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment