]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - drivers/staging/android/sync.c
staging: sync: Fix timeout = 0 wait behavior
[karo-tx-linux.git] / drivers / staging / android / sync.c
index 9b8b0e96b9880657246e8b086e5a28ac43f744b9..b9bb974faacdf0db64d5cfec9011a3f5cac204e8 100644 (file)
@@ -616,10 +616,12 @@ int sync_fence_wait(struct sync_fence *fence, long timeout)
                return fence->status;
        }
 
-       if (fence->status == 0 && timeout > 0) {
-               pr_info("fence timeout on [%p] after %dms\n", fence,
-                       jiffies_to_msecs(timeout));
-               sync_dump();
+       if (fence->status == 0) {
+               if (timeout > 0) {
+                       pr_info("fence timeout on [%p] after %dms\n", fence,
+                               jiffies_to_msecs(timeout));
+                       sync_dump();
+               }
                return -ETIME;
        }