diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/include/linux/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/include/linux/list.h b/tools/perf/util/include/linux/list.h index 356c7e467b83..99358d61e9a5 100644 --- a/tools/perf/util/include/linux/list.h +++ b/tools/perf/util/include/linux/list.h | |||
@@ -23,5 +23,5 @@ static inline void list_del_range(struct list_head *begin, | |||
23 | * @head: the head for your list. | 23 | * @head: the head for your list. |
24 | */ | 24 | */ |
25 | #define list_for_each_from(pos, head) \ | 25 | #define list_for_each_from(pos, head) \ |
26 | for (; prefetch(pos->next), pos != (head); pos = pos->next) | 26 | for (; pos != (head); pos = pos->next) |
27 | #endif | 27 | #endif |