aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/linuxkpi/common/include/linux/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/compat/linuxkpi/common/include/linux/list.h')
-rw-r--r--sys/compat/linuxkpi/common/include/linux/list.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/compat/linuxkpi/common/include/linux/list.h b/sys/compat/linuxkpi/common/include/linux/list.h
index c16007eab143..8135aec85c22 100644
--- a/sys/compat/linuxkpi/common/include/linux/list.h
+++ b/sys/compat/linuxkpi/common/include/linux/list.h
@@ -73,7 +73,6 @@
#ifndef prefetch
#define prefetch(x)
#endif
-
#define LINUX_LIST_HEAD_INIT(name) { &(name), &(name) }
#define LINUX_LIST_HEAD(name) \
@@ -324,7 +323,6 @@ list_splice_tail_init(struct list_head *list, struct list_head *head)
#undef LIST_HEAD
#define LIST_HEAD(name) struct list_head name = { &(name), &(name) }
-
struct hlist_head {
struct hlist_node *first;
};
@@ -332,7 +330,6 @@ struct hlist_head {
struct hlist_node {
struct hlist_node *next, **pprev;
};
-
#define HLIST_HEAD_INIT { }
#define HLIST_HEAD(name) struct hlist_head name = HLIST_HEAD_INIT
#define INIT_HLIST_HEAD(head) (head)->first = NULL