freedreno/drm: Remove assert

We can hit this scenario if there is a GPU hang before the userspace
fence writeback happens.  Since we have asserts enabled in CI, just
remove this assert.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20575>
This commit is contained in:
Rob Clark
2023-01-06 11:51:32 -08:00
committed by Marge Bot
parent adee0e7e53
commit ca2011d11c
-2
View File
@@ -161,8 +161,6 @@ sa_cpu_prep(struct fd_bo *bo, struct fd_pipe *pipe, uint32_t op)
/* expire completed fences */
fd_bo_state(bo);
assert(fd_bo_state(bo) == FD_BO_STATE_IDLE);
return 0;
}