binder: Fix missing kernel-doc entries in binder.c

Fix several kernel-doc warnings in `drivers/android/binder.c` caused by
undocumented struct members and function parameters.

In particular, add missing documentation for the `@thread` parameter in
binder_free_buf_locked().

Signed-off-by: Kriish Sharma <kriish.sharma2006@gmail.com>
Acked-by: Carlos Llamas <cmllamas@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by Kriish Sharma and committed by Greg Kroah-Hartman 7557f189 b5ce7a5c

+14 -13
+14 -13
drivers/android/binder.c
··· 2418 2418 2419 2419 /** 2420 2420 * struct binder_ptr_fixup - data to be fixed-up in target buffer 2421 - * @offset offset in target buffer to fixup 2422 - * @skip_size bytes to skip in copy (fixup will be written later) 2423 - * @fixup_data data to write at fixup offset 2424 - * @node list node 2421 + * @offset: offset in target buffer to fixup 2422 + * @skip_size: bytes to skip in copy (fixup will be written later) 2423 + * @fixup_data: data to write at fixup offset 2424 + * @node: list node 2425 2425 * 2426 2426 * This is used for the pointer fixup list (pf) which is created and consumed 2427 2427 * during binder_transaction() and is only accessed locally. No ··· 2438 2438 2439 2439 /** 2440 2440 * struct binder_sg_copy - scatter-gather data to be copied 2441 - * @offset offset in target buffer 2442 - * @sender_uaddr user address in source buffer 2443 - * @length bytes to copy 2444 - * @node list node 2441 + * @offset: offset in target buffer 2442 + * @sender_uaddr: user address in source buffer 2443 + * @length: bytes to copy 2444 + * @node: list node 2445 2445 * 2446 2446 * This is used for the sg copy list (sgc) which is created and consumed 2447 2447 * during binder_transaction() and is only accessed locally. No ··· 4063 4063 4064 4064 /** 4065 4065 * binder_free_buf() - free the specified buffer 4066 - * @proc: binder proc that owns buffer 4067 - * @buffer: buffer to be freed 4068 - * @is_failure: failed to send transaction 4066 + * @proc: binder proc that owns buffer 4067 + * @thread: binder thread performing the buffer release 4068 + * @buffer: buffer to be freed 4069 + * @is_failure: failed to send transaction 4069 4070 * 4070 - * If buffer for an async transaction, enqueue the next async 4071 + * If the buffer is for an async transaction, enqueue the next async 4071 4072 * transaction from the node. 4072 4073 * 4073 - * Cleanup buffer and free it. 4074 + * Cleanup the buffer and free it. 4074 4075 */ 4075 4076 static void 4076 4077 binder_free_buf(struct binder_proc *proc,