summaryrefslogtreecommitdiff
path: root/include/linker_lists.h
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2021-03-28 11:53:18 +0300
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2021-04-10 13:00:24 +0300
commitf44c214541b8e194e284a4d08e95f3ed09a0b262 (patch)
tree788e9346a5a2da4b0945e28ea76c38c6e5e220f3 /include/linker_lists.h
parentb411b62fb4a02b8c885fa86a1e8c5145cfa1b65f (diff)
downloadu-boot-f44c214541b8e194e284a4d08e95f3ed09a0b262.tar.xz
linker_lists: document ll_entry_ref parameters
Avoid 'make htmldocs' build warnings: ./include/linker_lists.h:224: warning: Function parameter or member '_type' not described in 'll_entry_ref' ./include/linker_lists.h:224: warning: Function parameter or member '_name' not described in 'll_entry_ref' ./include/linker_lists.h:224: warning: Function parameter or member '_list' not described in 'll_entry_ref' Fixes: 851144350b6f ("linker_lists: Allow use in data structures") Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/linker_lists.h')
-rw-r--r--include/linker_lists.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linker_lists.h b/include/linker_lists.h
index 81a280a884..2fea54c834 100644
--- a/include/linker_lists.h
+++ b/include/linker_lists.h
@@ -219,6 +219,10 @@
*
* This is like ll_entry_get(), but without the extra code, so it is suitable
* for putting into data structures.
+ *
+ * @_type: C type of the list entry, e.g. 'struct foo'
+ * @_name: name of the entry
+ * @_list: name of the list
*/
#define ll_entry_ref(_type, _name, _list) \
((_type *)&_u_boot_list_2_##_list##_2_##_name)