1
0
Fork 0

drm/nouveau: Don't skip card take down on nv0x.

Signed-off-by: Francisco Jerez <currojerez@riseup.net>
hifive-unleashed-5.1
Francisco Jerez 2009-12-22 18:24:09 +01:00 committed by Ben Skeggs
parent 0829168b47
commit 111b459af1
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}