From: Fabio Estevam Date: Mon, 17 Apr 2017 22:36:40 +0000 (-0300) Subject: etnaviv: etnaviv_fence: Simplify the return code logic X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=53e39f6df47fcfc19f36e425c0f880a9b1a2a7d6 etnaviv: etnaviv_fence: Simplify the return code logic The return code can be simplified by using the logical not operator. Signed-off-by: Fabio Estevam Reviewed-by: Christian Gmeiner --- diff --git a/src/gallium/drivers/etnaviv/etnaviv_fence.c b/src/gallium/drivers/etnaviv/etnaviv_fence.c index 65402aaa3bd..d82708eacbe 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;