Merge "disp: msm: sde: add changes to fix the sde fence signaled logic"

This commit is contained in:
qctecmdr
2021-06-23 00:02:16 -07:00
committed by Gerrit - the friendly Code Review server

View File

@@ -131,7 +131,7 @@ static bool sde_fence_signaled(struct dma_fence *fence)
struct sde_fence *f = to_sde_fence(fence);
bool status;
status = (int)((fence->seqno - f->ctx->done_count) <= 0);
status = ((int)(fence->seqno - f->ctx->done_count) <= 0);
SDE_DEBUG("status:%d fence seq:%llu and timeline:%u\n",
status, fence->seqno, f->ctx->done_count);
return status;