diff options
| author | Randy Dunlap <[email protected]> | 2023-12-05 22:53:18 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2023-12-05 23:48:26 +0000 |
| commit | 96d1d578dec1e69ed086dd67f7e5974875d981b3 (patch) | |
| tree | 9d4f9f2ef78bad0076e613237b1f592f13422b90 /drivers/android/binder_alloc_selftest.c | |
| parent | binder: switch alloc->mutex to spinlock_t (diff) | |
| download | kernel-96d1d578dec1e69ed086dd67f7e5974875d981b3.tar.gz kernel-96d1d578dec1e69ed086dd67f7e5974875d981b3.zip | |
android: binder: fix a kernel-doc enum warning
Add kernel-doc notation for @LOOP_END to prevent a kernel-doc
warning.
binder_alloc_selftest.c:76: warning: Enum value 'LOOP_END' not described in enum 'buf_end_align_type'
Signed-off-by: Randy Dunlap <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: Arve Hjønnevåg <[email protected]>
Cc: Todd Kjos <[email protected]>
Cc: Martijn Coenen <[email protected]>
Cc: Joel Fernandes <[email protected]>
Cc: Christian Brauner <[email protected]>
Cc: Carlos Llamas <[email protected]>
Cc: Suren Baghdasaryan <[email protected]>
Acked-by: Carlos Llamas <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/android/binder_alloc_selftest.c')
| -rw-r--r-- | drivers/android/binder_alloc_selftest.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/android/binder_alloc_selftest.c b/drivers/android/binder_alloc_selftest.c index fba7ab6ca451..81442fe20a69 100644 --- a/drivers/android/binder_alloc_selftest.c +++ b/drivers/android/binder_alloc_selftest.c @@ -72,6 +72,10 @@ enum buf_end_align_type { * buf1 ]|[ buf2 | buf2 | buf2 ][ ... */ NEXT_NEXT_UNALIGNED, + /** + * @LOOP_END: The number of enum values in &buf_end_align_type. + * It is used for controlling loop termination. + */ LOOP_END, }; |
