summaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/list.h
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2024-02-03 00:58:17 +0900
committerMasahiro Yamada <masahiroy@kernel.org>2024-02-19 18:20:41 +0900
commit4dae9cf5cbb863c7ca23899446885dbc457f81ae (patch)
tree5aeb760348fa8b30930ca419a9a5d0007c2f122f /scripts/kconfig/list.h
parent5b058034e3aa600802ab609e8264dc2ca1300ebe (diff)
downloadlinux-4dae9cf5cbb863c7ca23899446885dbc457f81ae.tar.gz
linux-4dae9cf5cbb863c7ca23899446885dbc457f81ae.tar.bz2
linux-4dae9cf5cbb863c7ca23899446885dbc457f81ae.zip
kconfig: split list_head into a separate header
The struct list_head is often embedded in other structures, while other code is used in C functions. By separating struct list_head into its own header, other headers are no longer required to include the entire list.h. This is similar to the kernel space, where struct list_head is defined in <linux/types.h> instead of <linux/list.h>. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/list.h')
-rw-r--r--scripts/kconfig/list.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/scripts/kconfig/list.h b/scripts/kconfig/list.h
index 45cb237ab7ef..babed0baf4ae 100644
--- a/scripts/kconfig/list.h
+++ b/scripts/kconfig/list.h
@@ -2,6 +2,8 @@
#ifndef LIST_H
#define LIST_H
+#include "list_types.h"
+
/*
* Copied from include/linux/...
*/
@@ -20,12 +22,6 @@
const typeof( ((type *)0)->member ) *__mptr = (ptr); \
(type *)( (char *)__mptr - offsetof(type,member) );})
-
-struct list_head {
- struct list_head *next, *prev;
-};
-
-
#define LIST_HEAD_INIT(name) { &(name), &(name) }
#define LIST_HEAD(name) \