1
0
Fork 0

drm/vmwgfx: Fix an fb unlocking bug

A regression introduced when the master ttm lock was split into two.

Reported-and-tested-by: Brian Paul <brianp@vmware.com>
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
hifive-unleashed-5.1
Thomas Hellstrom 2015-06-25 10:10:36 -07:00
parent dcd14dd957
commit 12617971c4
1 changed files with 2 additions and 2 deletions

View File

@ -402,12 +402,12 @@ static int vmw_fb_create_bo(struct vmw_private *vmw_priv,
*out = vmw_bo;
ttm_write_unlock(&vmw_priv->fbdev_master.lock);
ttm_write_unlock(&vmw_priv->reservation_sem);
return 0;
err_unlock:
ttm_write_unlock(&vmw_priv->fbdev_master.lock);
ttm_write_unlock(&vmw_priv->reservation_sem);
return ret;
}