Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 22c806c2 authored by Simon Farnsworth's avatar Simon Farnsworth Committed by Dave Airlie
Browse files

drm/via: Fix dmablit when blit queue is full



fd.o bug 11542

Acked-by: Thomas Hellstrom
Signed-off-by: default avatarDave Airlie <airlied@linux.ie>
parent 7ea4d4bd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -560,7 +560,7 @@ via_init_dmablit(struct drm_device *dev)
		blitq->head = 0;
		blitq->cur = 0;
		blitq->serviced = 0;
		blitq->num_free = VIA_NUM_BLIT_SLOTS;
		blitq->num_free = VIA_NUM_BLIT_SLOTS - 1;
		blitq->num_outstanding = 0;
		blitq->is_active = 0;
		blitq->aborting = 0;