llist: use correct function parameter name

Correct the function parameter name to avoid kernel-doc warnings:

Warning: ./include/linux/llist.h:71 function parameter 'list' not described in 'init_llist_head'
Warning: ./include/linux/llist.h:71 Excess function parameter 'head' description in 'init_llist_head'

Link: https://lore.kernel.org/20260723165113.225098-1-rdunlap@infradead.org
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
Randy Dunlap
2026-07-23 09:51:13 -07:00
committed by Andrew Morton
parent 1f58a5335c
commit eb14721d50

View File

@@ -66,7 +66,7 @@ struct llist_node {
/**
* init_llist_head - initialize lock-less list head
* @head: the head for your lock-less list
* @list: the head for your lock-less list
*/
static inline void init_llist_head(struct llist_head *list)
{