list_compat.h: remove list_remove()
authorFelix Fietkau <nbd@openwrt.org>
Thu, 20 Mar 2014 22:00:53 +0000 (23:00 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Thu, 20 Mar 2014 22:00:53 +0000 (23:00 +0100)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
avl.c
list_compat.h

diff --git a/avl.c b/avl.c
index f17dab5..0dfd903 100644 (file)
--- a/avl.c
+++ b/avl.c
@@ -498,7 +498,7 @@ avl_insert_after(struct avl_tree *tree, struct avl_node *pos_node, struct avl_no
 static void
 avl_remove(struct avl_tree *tree, struct avl_node *node)
 {
-  list_remove(&node->list);
+  list_del(&node->list);
   tree->count--;
 }
 
index 9329820..44cfedd 100644 (file)
@@ -17,7 +17,6 @@
 #ifndef __LIST_COMPAT_H
 #define __LIST_COMPAT_H
 
-#define list_remove(_list)                     list_del(_list)
 #define list_is_empty(_list)                   list_empty(_list)
 #define list_next_element(_element, _member)   list_entry((_element)->_member.next, typeof(*(_element)), _member)