Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[pandora-kernel.git] / tools / perf / util / include / linux / list.h
index ed33609..1d928a0 100644 (file)
@@ -25,5 +25,5 @@ static inline void list_del_range(struct list_head *begin,
  * @head: the head for your list.
  */
 #define list_for_each_from(pos, head) \
-       for (; prefetch(pos->next), pos != (head); pos = pos->next)
+       for (; pos != (head); pos = pos->next)
 #endif