summaryrefslogtreecommitdiff
path: root/shared-core/i915_dma.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2008-06-13 09:53:36 -0700
committerEric Anholt <eric@anholt.net>2008-06-13 09:54:14 -0700
commit0558d99c01c38e24e97b57ef55f66bb94a92e157 (patch)
treec4529948d4f082a62242e7519791d461c8e712b6 /shared-core/i915_dma.c
parentc892e26bdfcacfe7213085a08dd82e2cb7faa003 (diff)
[gem] Remove the interrupt handler for retiring requests.
This was insufficient once we started masking interrupts to only when someone was waiting for them (and would thus retire requests themselves). It was replaced by the retire_timer.
Diffstat (limited to 'shared-core/i915_dma.c')
-rw-r--r--shared-core/i915_dma.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/shared-core/i915_dma.c b/shared-core/i915_dma.c
index 7e4de18b..667a6ac0 100644
--- a/shared-core/i915_dma.c
+++ b/shared-core/i915_dma.c
@@ -1077,8 +1077,6 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags)
init_timer_deferrable (&dev_priv->mm.retire_timer);
INIT_WORK(&dev_priv->mm.retire_task,
i915_gem_retire_handler);
- INIT_WORK(&dev_priv->user_interrupt_task,
- i915_user_interrupt_handler);
dev_priv->mm.next_gem_seqno = 1;
#ifdef __linux__