ubifs: fix kernel-doc warnings

make C=1 reports the following kernel-doc warnings:

fs/ubifs/compress.c:103: warning: Function parameter or struct member 'c' not described in 'ubifs_compress'
fs/ubifs/compress.c:155: warning: Function parameter or struct member 'c' not described in 'ubifs_decompress'
fs/ubifs/find.c:353: warning: Excess function parameter 'data' description in 'scan_for_free_cb'
fs/ubifs/find.c:353: warning: Function parameter or struct member 'arg' not described in 'scan_for_free_cb'
fs/ubifs/find.c:594: warning: Excess function parameter 'data' description in 'scan_for_idx_cb'
fs/ubifs/find.c:594: warning: Function parameter or struct member 'arg' not described in 'scan_for_idx_cb'
fs/ubifs/find.c:786: warning: Excess function parameter 'data' description in 'scan_dirty_idx_cb'
fs/ubifs/find.c:786: warning: Function parameter or struct member 'arg' not described in 'scan_dirty_idx_cb'
fs/ubifs/find.c:86: warning: Excess function parameter 'data' description in 'scan_for_dirty_cb'
fs/ubifs/find.c:86: warning: Function parameter or struct member 'arg' not described in 'scan_for_dirty_cb'
fs/ubifs/journal.c:369: warning: expecting prototype for wake_up_reservation(). Prototype was for add_or_start_queue() instead
fs/ubifs/lprops.c:1018: warning: Excess function parameter 'lst' description in 'scan_check_cb'
fs/ubifs/lprops.c:1018: warning: Function parameter or struct member 'arg' not described in 'scan_check_cb'
fs/ubifs/lpt.c:1938: warning: Function parameter or struct member 'ptr' not described in 'lpt_scan_node'
fs/ubifs/replay.c:60: warning: Function parameter or struct member 'hash' not described in 'replay_entry'

Fix them.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>

authored by Jeff Johnson and committed by Richard Weinberger 39986148 7037c96d

+10 -6
+2
fs/ubifs/compress.c
··· 82 82 83 83 /** 84 84 * ubifs_compress - compress data. 85 + * @c: UBIFS file-system description object 85 86 * @in_buf: data to compress 86 87 * @in_len: length of the data to compress 87 88 * @out_buf: output buffer where compressed data should be stored ··· 141 140 142 141 /** 143 142 * ubifs_decompress - decompress data. 143 + * @c: UBIFS file-system description object 144 144 * @in_buf: data to decompress 145 145 * @in_len: length of the data to decompress 146 146 * @out_buf: output buffer where decompressed data should
+4 -4
fs/ubifs/find.c
··· 73 73 * @c: the UBIFS file-system description object 74 74 * @lprops: LEB properties to scan 75 75 * @in_tree: whether the LEB properties are in main memory 76 - * @data: information passed to and from the caller of the scan 76 + * @arg: information passed to and from the caller of the scan 77 77 * 78 78 * This function returns a code that indicates whether the scan should continue 79 79 * (%LPT_SCAN_CONTINUE), whether the LEB properties should be added to the tree ··· 340 340 * @c: the UBIFS file-system description object 341 341 * @lprops: LEB properties to scan 342 342 * @in_tree: whether the LEB properties are in main memory 343 - * @data: information passed to and from the caller of the scan 343 + * @arg: information passed to and from the caller of the scan 344 344 * 345 345 * This function returns a code that indicates whether the scan should continue 346 346 * (%LPT_SCAN_CONTINUE), whether the LEB properties should be added to the tree ··· 581 581 * @c: the UBIFS file-system description object 582 582 * @lprops: LEB properties to scan 583 583 * @in_tree: whether the LEB properties are in main memory 584 - * @data: information passed to and from the caller of the scan 584 + * @arg: information passed to and from the caller of the scan 585 585 * 586 586 * This function returns a code that indicates whether the scan should continue 587 587 * (%LPT_SCAN_CONTINUE), whether the LEB properties should be added to the tree ··· 773 773 * @c: the UBIFS file-system description object 774 774 * @lprops: LEB properties to scan 775 775 * @in_tree: whether the LEB properties are in main memory 776 - * @data: information passed to and from the caller of the scan 776 + * @arg: information passed to and from the caller of the scan 777 777 * 778 778 * This function returns a code that indicates whether the scan should continue 779 779 * (%LPT_SCAN_CONTINUE), whether the LEB properties should be added to the tree
+1 -1
fs/ubifs/journal.c
··· 359 359 } 360 360 361 361 /** 362 - * wake_up_reservation - add current task in queue or start queuing. 362 + * add_or_start_queue - add current task in queue or start queuing. 363 363 * @c: UBIFS file-system description object 364 364 * 365 365 * This function starts queuing if queuing is not started, otherwise adds
+1 -1
fs/ubifs/lprops.c
··· 1005 1005 * @c: the UBIFS file-system description object 1006 1006 * @lp: LEB properties to scan 1007 1007 * @in_tree: whether the LEB properties are in main memory 1008 - * @lst: lprops statistics to update 1008 + * @arg: lprops statistics to update 1009 1009 * 1010 1010 * This function returns a code that indicates whether the scan should continue 1011 1011 * (%LPT_SCAN_CONTINUE), whether the LEB properties should be added to the tree
+1
fs/ubifs/lpt.c
··· 1918 1918 * @pnode: where to keep a pnode 1919 1919 * @cnode: where to keep a cnode 1920 1920 * @in_tree: is the node in the tree in memory 1921 + * @ptr: union of node pointers 1921 1922 * @ptr.nnode: pointer to the nnode (if it is an nnode) which may be here or in 1922 1923 * the tree 1923 1924 * @ptr.pnode: ditto for pnode
+1
fs/ubifs/replay.c
··· 29 29 * @lnum: logical eraseblock number of the node 30 30 * @offs: node offset 31 31 * @len: node length 32 + * @hash: node hash 32 33 * @deletion: non-zero if this entry corresponds to a node deletion 33 34 * @sqnum: node sequence number 34 35 * @list: links the replay list