summaryrefslogtreecommitdiffstats
path: root/fs/befs/btree.c
diff options
context:
space:
mode:
authorFabian Frederick2014-06-06 23:36:17 +0200
committerLinus Torvalds2014-06-07 01:08:09 +0200
commit817e1d902aca6ab8a0b54691f4fea3ee3aebbe86 (patch)
treeefce884f1cf2ff6ef3e8e2b92961fd7f06c4d254 /fs/befs/btree.c
parentfs/befs/linuxvfs.c: remove positive test on sector_t (diff)
downloadkernel-qcow2-linux-817e1d902aca6ab8a0b54691f4fea3ee3aebbe86.tar.gz
kernel-qcow2-linux-817e1d902aca6ab8a0b54691f4fea3ee3aebbe86.tar.xz
kernel-qcow2-linux-817e1d902aca6ab8a0b54691f4fea3ee3aebbe86.zip
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 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,
* 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.