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-30 19:50:17 -07:00
committed by Andrew Morton
parent b43f2b7324
commit f72d1c07b8
+1 -1
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)
{