diff options
author | Francisco Jerez <currojerez@riseup.net> | 2009-12-22 17:24:09 (GMT) |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-01-11 04:41:09 (GMT) |
commit | 8f71c29e442e013212a98e2b37eb1074c4d1134f (patch) | |
tree | cc8fa3692fb37623a79692d6500af29f7a1536f8 /drivers/gpu | |
parent | b7f7e41b895afd110d1f5121161fd401eccd98c9 (diff) | |
download | linux-8f71c29e442e013212a98e2b37eb1074c4d1134f.tar.xz |
drm/nouveau: Don't skip card take down on nv0x.
Signed-off-by: Francisco Jerez <currojerez@riseup.net>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_state.c b/drivers/gpu/drm/nouveau/nouveau_state.c index 6a45913..a6b573e 100644 --- a/drivers/gpu/drm/nouveau/nouveau_state.c +++ b/drivers/gpu/drm/nouveau/nouveau_state.c @@ -722,8 +722,8 @@ static void nouveau_close(struct drm_device *dev) { struct drm_nouveau_private *dev_priv = dev->dev_private; - /* In the case of an error dev_priv may not be be allocated yet */ - if (dev_priv && dev_priv->card_type) + /* In the case of an error dev_priv may not be allocated yet */ + if (dev_priv) nouveau_card_takedown(dev); } |