Skip to content

Commit

Permalink
drm/i915/bdw: Take render error interrupt out of the mask
Browse files Browse the repository at this point in the history
The handling of the error interrupts isn't wired up at all. And it
hasn't been ever since ilk happened, so don't bother.

Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Daniel Vetter committed Nov 8, 2013
1 parent e76e063 commit 40c499f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/gpu/drm/i915/intel_ringbuffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -2132,8 +2132,7 @@ int intel_init_vebox_ring_buffer(struct drm_device *dev)

if (INTEL_INFO(dev)->gen >= 8) {
ring->irq_enable_mask =
(GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT) |
GT_RENDER_CS_MASTER_ERROR_INTERRUPT;
GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
ring->irq_get = gen8_ring_get_irq;
ring->irq_put = gen8_ring_put_irq;
ring->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
Expand Down

0 comments on commit 40c499f

Please sign in to comment.