sanitize <linux/prefetch.h> usage
[pandora-kernel.git] / tools / perf / util / include / linux / list.h
index 356c7e4..99358d6 100644 (file)
@@ -23,5 +23,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