diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-06-28 06:48:51 -0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-06-28 13:20:06 -0400 |
commit | f01c22fd59aa10a3738ede20fd4b9b6fd1e2eac3 (patch) | |
tree | f305fa0368e2c94fc438d5bdf700eb65e1284299 /drivers | |
parent | 25732821cb965f00475922ca46e84f78e4bada95 (diff) |
drm/i915: Use chipset-specific irq installers
Konstantin Belousov pointed out that 4697995b98417 replaced the generic
i915_driver_irq_*install() functions with chipset specific routines
accessible only through driver->irq_*install(). So update the sanity
check in i915_request_wait() to match.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/i915/i915_gem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index c6389de53161..e81dbe57c773 100644 --- a/drivers/gpu/drm/i915/i915_gem.c +++ b/drivers/gpu/drm/i915/i915_gem.c | |||
@@ -2080,8 +2080,8 @@ i915_wait_request(struct intel_ring_buffer *ring, | |||
2080 | if (!ier) { | 2080 | if (!ier) { |
2081 | DRM_ERROR("something (likely vbetool) disabled " | 2081 | DRM_ERROR("something (likely vbetool) disabled " |
2082 | "interrupts, re-enabling\n"); | 2082 | "interrupts, re-enabling\n"); |
2083 | i915_driver_irq_preinstall(ring->dev); | 2083 | ring->dev->driver->irq_preinstall(ring->dev); |
2084 | i915_driver_irq_postinstall(ring->dev); | 2084 | ring->dev->driver->irq_postinstall(ring->dev); |
2085 | } | 2085 | } |
2086 | 2086 | ||
2087 | trace_i915_gem_request_wait_begin(ring, seqno); | 2087 | trace_i915_gem_request_wait_begin(ring, seqno); |