diff options
author | Timothy Arceri <[email protected]> | 2019-10-28 10:11:53 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2019-10-28 11:24:38 +0000 |
commit | c578600489e35abb481816c87124b1dc6b279655 (patch) | |
tree | 84b6a694d1bebdd4d2e6414718c5fcf0294d4bef /src/gallium/drivers/nouveau/nouveau_fence.c | |
parent | c976b427c4e376d93396325a4c1ca47349f618e8 (diff) |
util: remove LIST_DEL macro
Just use the inlined function directly. The macro was replaced with
the function in ebe304fa540f.
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nouveau_fence.c')
-rw-r--r-- | src/gallium/drivers/nouveau/nouveau_fence.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_fence.c b/src/gallium/drivers/nouveau/nouveau_fence.c index ab0a0349a02..d0c66c56128 100644 --- a/src/gallium/drivers/nouveau/nouveau_fence.c +++ b/src/gallium/drivers/nouveau/nouveau_fence.c @@ -50,7 +50,7 @@ nouveau_fence_trigger_work(struct nouveau_fence *fence) LIST_FOR_EACH_ENTRY_SAFE(work, tmp, &fence->work, list) { work->func(work->data); - LIST_DEL(&work->list); + list_del(&work->list); FREE(work); } } |