diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-06 17:36:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-06 19:08:09 -0400 |
commit | 817e1d902aca6ab8a0b54691f4fea3ee3aebbe86 (patch) | |
tree | efce884f1cf2ff6ef3e8e2b92961fd7f06c4d254 /fs/befs/btree.c | |
parent | f38f41c31b4596476f444d5419f8a7f1194c0840 (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/btree.c')
-rw-r--r-- | fs/befs/btree.c | 4 |
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, | |||
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. |