summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nouveau/nv50
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2017-01-16 16:25:19 +0000
committerEmil Velikov <[email protected]>2017-01-18 16:01:15 +0000
commit9c5003996ce770d0a377d6323a7ebef237de5513 (patch)
tree055eba7806ef2d4b3bef828ecab442d56baede07 /src/gallium/drivers/nouveau/nv50
parentaf4a298719e7b70cae6592c923ffbed9d4dc3678 (diff)
nouveau: remove always false argument in nouveau_fence_new()
No point in having the extra argument considering that it's effectively unused since the function was introduced. Cc: Ilia Mirkin <[email protected]> Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nv50')
-rw-r--r--src/gallium/drivers/nouveau/nv50/nv50_screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_screen.c b/src/gallium/drivers/nouveau/nv50/nv50_screen.c
index f766aadb06c..fcff85d9ed1 100644
--- a/src/gallium/drivers/nouveau/nv50/nv50_screen.c
+++ b/src/gallium/drivers/nouveau/nv50/nv50_screen.c
@@ -1017,7 +1017,7 @@ nv50_screen_create(struct nouveau_device *dev)
goto fail;
}
- nouveau_fence_new(&screen->base, &screen->base.fence.current, false);
+ nouveau_fence_new(&screen->base, &screen->base.fence.current);
return &screen->base;