diff options
| author | Todd Kjos <tkjos@android.com> | 2018-12-05 18:19:25 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-12-06 09:44:14 -0500 |
| commit | 7a2670a5bc917e4e7c9be5274efc004f9bd1216a (patch) | |
| tree | f731473a8e6c141d218787e6b284e772785fde11 /drivers/android | |
| parent | 2796b43feeeaf2d74998e42d1fddcefed6955f54 (diff) | |
binder: fix kerneldoc header for struct binder_buffer
Fix the incomplete kerneldoc header for struct binder_buffer.
Signed-off-by: Todd Kjos <tkjos@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/android')
| -rw-r--r-- | drivers/android/binder_alloc.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/android/binder_alloc.h b/drivers/android/binder_alloc.h index fb3238c74c8a..c0aadbbf7f19 100644 --- a/drivers/android/binder_alloc.h +++ b/drivers/android/binder_alloc.h | |||
| @@ -30,16 +30,16 @@ struct binder_transaction; | |||
| 30 | * struct binder_buffer - buffer used for binder transactions | 30 | * struct binder_buffer - buffer used for binder transactions |
| 31 | * @entry: entry alloc->buffers | 31 | * @entry: entry alloc->buffers |
| 32 | * @rb_node: node for allocated_buffers/free_buffers rb trees | 32 | * @rb_node: node for allocated_buffers/free_buffers rb trees |
| 33 | * @free: true if buffer is free | 33 | * @free: %true if buffer is free |
| 34 | * @allow_user_free: describe the second member of struct blah, | 34 | * @allow_user_free: %true if user is allowed to free buffer |
| 35 | * @async_transaction: describe the second member of struct blah, | 35 | * @async_transaction: %true if buffer is in use for an async txn |
| 36 | * @debug_id: describe the second member of struct blah, | 36 | * @debug_id: unique ID for debugging |
| 37 | * @transaction: describe the second member of struct blah, | 37 | * @transaction: pointer to associated struct binder_transaction |
| 38 | * @target_node: describe the second member of struct blah, | 38 | * @target_node: struct binder_node associated with this buffer |
| 39 | * @data_size: describe the second member of struct blah, | 39 | * @data_size: size of @transaction data |
| 40 | * @offsets_size: describe the second member of struct blah, | 40 | * @offsets_size: size of array of offsets |
| 41 | * @extra_buffers_size: describe the second member of struct blah, | 41 | * @extra_buffers_size: size of space for other objects (like sg lists) |
| 42 | * @data:i describe the second member of struct blah, | 42 | * @data: pointer to base of buffer space |
| 43 | * | 43 | * |
| 44 | * Bookkeeping structure for binder transaction buffers | 44 | * Bookkeeping structure for binder transaction buffers |
| 45 | */ | 45 | */ |
