diff --git a/include/common/list.h b/include/common/list.h index 4e33475c1..b8b57c784 100644 --- a/include/common/list.h +++ b/include/common/list.h @@ -216,9 +216,6 @@ static inline void list_splice_tail_init(struct list_head *list, #define list_for_each(pos, head) \ for (pos = (head)->next; pos != (head); pos = pos->next) -#define __list_for_each(pos, head) \ - for (pos = (head)->next; pos != (head); pos = pos->next) - #define list_for_each_prev(pos, head) \ for (pos = (head)->prev; pos != (head); pos = pos->prev)