aboutsummaryrefslogtreecommitdiffstats
path: root/fs/befs
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-06-06 17:36:17 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-06-06 19:08:09 -0400
commit817e1d902aca6ab8a0b54691f4fea3ee3aebbe86 (patch)
treeefce884f1cf2ff6ef3e8e2b92961fd7f06c4d254 /fs/befs
parentf38f41c31b4596476f444d5419f8a7f1194c0840 (diff)
fs/befs: kernel-doc fixes
Fix some comment errors. Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/befs')
-rw-r--r--fs/befs/btree.c4
-rw-r--r--fs/befs/datastream.c2
-rw-r--r--fs/befs/linuxvfs.c16
3 files changed, 11 insertions, 11 deletions
diff --git a/fs/befs/btree.c b/fs/befs/btree.c
index 9d7d00e04858..9c7faa8a9288 100644
--- a/fs/befs/btree.c
+++ b/fs/befs/btree.c
@@ -318,7 +318,7 @@ befs_btree_find(struct super_block *sb, befs_data_stream * ds,
318 * befs_find_key - Search for a key within a node 318 * befs_find_key - Search for a key within a node
319 * @sb: Filesystem superblock 319 * @sb: Filesystem superblock
320 * @node: Node to find the key within 320 * @node: Node to find the key within
321 * @key: Keystring to search for 321 * @findkey: Keystring to search for
322 * @value: If key is found, the value stored with the key is put here 322 * @value: If key is found, the value stored with the key is put here
323 * 323 *
324 * finds exact match if one exists, and returns BEFS_BT_MATCH 324 * 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 * @key1: pointer to the first key to be compared 706 * @key1: pointer to the first key to be compared
707 * @keylen1: length in bytes of key1 707 * @keylen1: length in bytes of key1
708 * @key2: pointer to the second key to be compared 708 * @key2: pointer to the second key to be compared
709 * @kelen2: length in bytes of key2 709 * @keylen2: length in bytes of key2
710 * 710 *
711 * Returns 0 if @key1 and @key2 are equal. 711 * Returns 0 if @key1 and @key2 are equal.
712 * Returns >0 if @key1 is greater. 712 * Returns >0 if @key1 is greater.
diff --git a/fs/befs/datastream.c b/fs/befs/datastream.c
index c467bebd50af..1e8e0b8d8836 100644
--- a/fs/befs/datastream.c
+++ b/fs/befs/datastream.c
@@ -116,7 +116,7 @@ befs_fblock2brun(struct super_block *sb, befs_data_stream * data,
116 * befs_read_lsmylink - read long symlink from datastream. 116 * befs_read_lsmylink - read long symlink from datastream.
117 * @sb: Filesystem superblock 117 * @sb: Filesystem superblock
118 * @ds: Datastrem to read from 118 * @ds: Datastrem to read from
119 * @buf: Buffer in which to place long symlink data 119 * @buff: Buffer in which to place long symlink data
120 * @len: Length of the long symlink in bytes 120 * @len: Length of the long symlink in bytes
121 * 121 *
122 * Returns the number of bytes read 122 * Returns the number of bytes read
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
index ab3f6e171ea9..a16fbd4e8241 100644
--- a/fs/befs/linuxvfs.c
+++ b/fs/befs/linuxvfs.c
@@ -582,21 +582,21 @@ befs_utf2nls(struct super_block *sb, const char *in,
582/** 582/**
583 * befs_nls2utf - Convert NLS string to utf8 encodeing 583 * befs_nls2utf - Convert NLS string to utf8 encodeing
584 * @sb: Superblock 584 * @sb: Superblock
585 * @src: Input string buffer in NLS format 585 * @in: Input string buffer in NLS format
586 * @srclen: Length of input string in bytes 586 * @in_len: Length of input string in bytes
587 * @dest: The output string in UTF-8 format 587 * @out: The output string in UTF-8 format
588 * @destlen: Length of the output buffer 588 * @out_len: Length of the output buffer
589 * 589 *
590 * Converts input string @src, which is in the format of the loaded NLS map, 590 * Converts input string @in, which is in the format of the loaded NLS map,
591 * into a utf8 string. 591 * into a utf8 string.
592 * 592 *
593 * The destination string @dest is allocated by this function and the caller is 593 * The destination string @out is allocated by this function and the caller is
594 * responsible for freeing it with kfree() 594 * responsible for freeing it with kfree()
595 * 595 *
596 * On return, *@destlen is the length of @dest in bytes. 596 * On return, *@out_len is the length of @out in bytes.
597 * 597 *
598 * On success, the return value is the number of utf8 characters written to 598 * On success, the return value is the number of utf8 characters written to
599 * the output buffer @dest. 599 * the output buffer @out.
600 * 600 *
601 * On Failure, a negative number coresponding to the error code is returned. 601 * On Failure, a negative number coresponding to the error code is returned.
602 */ 602 */