diff options
author | Keith Packard <[email protected]> | 2008-11-02 23:38:20 -0800 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2008-11-11 17:43:14 +1000 |
commit | ad42ca8f4490de06462aee234ea0083cbd8b46aa (patch) | |
tree | f62bcc1f237f53d6a8aabcd65cf771d92dc2b66b | |
parent | 881ee9889c8b98671c5491e43666bf5d4f78a180 (diff) |
i915: Clean up sarea pointers on leavevt
This corresponds to the setup of the sarea pointers in DMA initialization,
though neither is exactly the point at which the sarea is set up or torn down.
Signed-off-by: Keith Packard <[email protected]>
Signed-off-by: Eric Anholt <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
-rw-r--r-- | drivers/gpu/drm/i915/i915_dma.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c index 256e22963ae4..79944460d70a 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c @@ -154,6 +154,9 @@ static int i915_dma_cleanup(struct drm_device * dev) if (I915_NEED_GFX_HWS(dev)) i915_free_hws(dev); + dev_priv->sarea = NULL; + dev_priv->sarea_priv = NULL; + return 0; } |