summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2019-02-28 11:01:57 -0800
committerEric Anholt <eric@anholt.net>2019-03-11 13:14:32 -0700
commit7c01ddbf7f1a543475e42a9854f0e3c60391012b (patch)
treeae952026c6786144bd10dfbf6208be34f81e37e5
parent7a727c1a1204e904b9e13d145ac0e9db33675273 (diff)
v3d: Reuse list_for_each_entry_rev().
-rw-r--r--src/broadcom/compiler/qpu_schedule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/broadcom/compiler/qpu_schedule.c b/src/broadcom/compiler/qpu_schedule.c
index e80be9c0bf1..8a7d9e84bf6 100644
--- a/src/broadcom/compiler/qpu_schedule.c
+++ b/src/broadcom/compiler/qpu_schedule.c
@@ -440,14 +440,14 @@ calculate_forward_deps(struct v3d_compile *c, struct list_head *schedule_list)
static void
calculate_reverse_deps(struct v3d_compile *c, struct list_head *schedule_list)
{
- struct list_head *node;
struct schedule_state state;
memset(&state, 0, sizeof(state));
state.devinfo = c->devinfo;
state.dir = R;
- for (node = schedule_list->prev; schedule_list != node; node = node->prev) {
+ list_for_each_entry_rev(struct schedule_node, node, schedule_list,
+ link) {
calculate_deps(&state, (struct schedule_node *)node);
}
}