summaryrefslogtreecommitdiff
path: root/include/linux/list.h
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2013-08-09 17:26:31 +0100
committerMark Brown <broonie@linaro.org>2013-08-09 17:26:31 +0100
commitc7abc19ca6d48392f91ca04ebe1e9813b3ace435 (patch)
treec23540ea1425e9891b39cdff550e90caaba38163 /include/linux/list.h
parentd60990d597bfa2816dfe28a5c5c6787610b423e6 (diff)
parentc095ba7224d8edc71dcef0d655911399a8bd4a3f (diff)
Merge tag 'v3.11-rc4' into spi-bitbang
Linux 3.11-rc4
Diffstat (limited to 'include/linux/list.h')
-rw-r--r--include/linux/list.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/list.h b/include/linux/list.h
index b83e5657365a..f4d8a2f12a33 100644
--- a/include/linux/list.h
+++ b/include/linux/list.h
@@ -381,17 +381,6 @@ static inline void list_splice_tail_init(struct list_head *list,
for (pos = (head)->next; pos != (head); pos = pos->next)
/**
- * __list_for_each - iterate over a list
- * @pos: the &struct list_head to use as a loop cursor.
- * @head: the head for your list.
- *
- * This variant doesn't differ from list_for_each() any more.
- * We don't do prefetching in either case.
- */
-#define __list_for_each(pos, head) \
- for (pos = (head)->next; pos != (head); pos = pos->next)
-
-/**
* list_for_each_prev - iterate over a list backwards
* @pos: the &struct list_head to use as a loop cursor.
* @head: the head for your list.