util: rename list_empty() to list_is_empty()
[mesa.git] / src / gallium / drivers / lima / ir / gp / scheduler.c
index bf8bd63e57cbc12fb2d6745b9ca3cc0f13f91235..471696d31b027222d80141a30ddb155671ba007b 100644 (file)
@@ -1604,7 +1604,7 @@ static bool schedule_block(gpir_block *block)
    }
 
    list_inithead(&block->node_list);
-   while (!list_empty(&ctx.ready_list)) {
+   while (!list_is_empty(&ctx.ready_list)) {
       if (!schedule_one_instr(&ctx))
          return false;
    }