[Mesa-dev] [PATCH] etnaviv: etnaviv_fence: Simplify the return code logic
Fabio Estevam
festevam at gmail.com
Mon Apr 17 22:36:40 UTC 2017
The return code can be simplified by using the logical not operator.
Signed-off-by: Fabio Estevam <festevam at gmail.com>
---
src/gallium/drivers/etnaviv/etnaviv_fence.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/gallium/drivers/etnaviv/etnaviv_fence.c b/src/gallium/drivers/etnaviv/etnaviv_fence.c
index 65402aa..d82708e 100644
--- a/src/gallium/drivers/etnaviv/etnaviv_fence.c
+++ b/src/gallium/drivers/etnaviv/etnaviv_fence.c
@@ -65,10 +65,8 @@ static boolean
etna_screen_fence_finish(struct pipe_screen *pscreen, struct pipe_context *ctx,
struct pipe_fence_handle *fence, uint64_t timeout)
{
- if (fence->fence_fd != -1) {
- int ret = sync_wait(fence->fence_fd, timeout / 1000000);
- return ret == 0;
- }
+ if (fence->fence_fd != -1)
+ return !sync_wait(fence->fence_fd, timeout / 1000000);
if (etna_pipe_wait_ns(fence->screen->pipe, fence->timestamp, timeout))
return false;
--
2.7.4
More information about the mesa-dev
mailing list