summaryrefslogtreecommitdiff
path: root/fs/befs/btree.c
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-06-06 21:36:17 (GMT)
committerLinus Torvalds <torvalds@linux-foundation.org>2014-06-06 23:08:09 (GMT)
commit817e1d902aca6ab8a0b54691f4fea3ee3aebbe86 (patch)
treeefce884f1cf2ff6ef3e8e2b92961fd7f06c4d254 /fs/befs/btree.c
parentf38f41c31b4596476f444d5419f8a7f1194c0840 (diff)
downloadlinux-817e1d902aca6ab8a0b54691f4fea3ee3aebbe86.tar.xz
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/btree.c')
-rw-r--r--fs/befs/btree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/befs/btree.c b/fs/befs/btree.c
index 9d7d00e..9c7faa8 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,
* befs_find_key - Search for a key within a node
* @sb: Filesystem superblock
* @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
*
* 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,
* @key1: pointer to the first key to be compared
* @keylen1: length in bytes of key1
* @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 is greater.