diff options
author | Timothy Arceri <[email protected]> | 2019-10-28 21:30:51 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2019-10-28 11:24:39 +0000 |
commit | 1909bc526dd0e51d49252a1fc1c2aab0a8a51fb5 (patch) | |
tree | 40397bc26a41f9d465ca73cff2fe2f1184a261c1 /src/etnaviv | |
parent | 7f106a2b5d0b27c1ce47a4b335c4cc8ae9cd460b (diff) |
util: remove LIST_IS_EMPTY macro
Just use the inlined function directly. The new function was introduced
in addcf410.
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/etnaviv')
-rw-r--r-- | src/etnaviv/drm/etnaviv_bo_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etnaviv/drm/etnaviv_bo_cache.c b/src/etnaviv/drm/etnaviv_bo_cache.c index 3b28c1477aa..93893b52b23 100644 --- a/src/etnaviv/drm/etnaviv_bo_cache.c +++ b/src/etnaviv/drm/etnaviv_bo_cache.c @@ -78,7 +78,7 @@ void etna_bo_cache_cleanup(struct etna_bo_cache *cache, time_t time) struct etna_bo_bucket *bucket = &cache->cache_bucket[i]; struct etna_bo *bo; - while (!LIST_IS_EMPTY(&bucket->list)) { + while (!list_is_empty(&bucket->list)) { bo = LIST_ENTRY(struct etna_bo, bucket->list.next, list); /* keep things in cache for at least 1 second: */ @@ -125,7 +125,7 @@ static struct etna_bo *find_in_bucket(struct etna_bo_bucket *bucket, uint32_t fl pthread_mutex_lock(&etna_drm_table_lock); - if (LIST_IS_EMPTY(&bucket->list)) + if (list_is_empty(&bucket->list)) goto out_unlock; LIST_FOR_EACH_ENTRY_SAFE(bo, tmp, &bucket->list, list) { |