summaryrefslogtreecommitdiffstats
path: root/src/util/list.h
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2019-10-28 21:30:51 +1100
committerTimothy Arceri <[email protected]>2019-10-28 11:24:39 +0000
commit1909bc526dd0e51d49252a1fc1c2aab0a8a51fb5 (patch)
tree40397bc26a41f9d465ca73cff2fe2f1184a261c1 /src/util/list.h
parent7f106a2b5d0b27c1ce47a4b335c4cc8ae9cd460b (diff)
util: remove LIST_IS_EMPTY macro
Just use the inlined function directly. The new function was introduced in addcf410. Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/util/list.h')
-rw-r--r--src/util/list.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/util/list.h b/src/util/list.h
index 7165f15f4ec..8a18c4b0d8d 100644
--- a/src/util/list.h
+++ b/src/util/list.h
@@ -161,9 +161,6 @@ static inline void list_validate(const struct list_head *list)
#define LIST_ENTRY(__type, __item, __field) \
((__type *)(((char *)(__item)) - offsetof(__type, __field)))
-#define LIST_IS_EMPTY(__list) \
- ((__list)->next == (__list))
-
/**
* Cast from a pointer to a member of a struct back to the containing struct.
*