diff options
author | Emil Velikov <[email protected]> | 2017-01-16 16:25:19 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-01-18 16:01:15 +0000 |
commit | 9c5003996ce770d0a377d6323a7ebef237de5513 (patch) | |
tree | 055eba7806ef2d4b3bef828ecab442d56baede07 /src/gallium/drivers/nouveau/nvc0 | |
parent | af4a298719e7b70cae6592c923ffbed9d4dc3678 (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/nvc0')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c index 1ef481b4e4d..ffbe733060c 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -1233,7 +1233,7 @@ nvc0_screen_create(struct nouveau_device *dev) screen->default_tsc = CALLOC_STRUCT(nv50_tsc_entry); screen->default_tsc->tsc[0] = G80_TSC_0_SRGB_CONVERSION; - nouveau_fence_new(&screen->base, &screen->base.fence.current, false); + nouveau_fence_new(&screen->base, &screen->base.fence.current); return &screen->base; |