Commit 9bb5863a authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau: fix chipset vs card_type thinko

Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 5220b3c1
......@@ -912,7 +912,7 @@ nouveau_ttm_fault_reserve_notify(struct ttm_buffer_object *bo)
* nothing to do here.
*/
if (bo->mem.mem_type != TTM_PL_VRAM) {
if (dev_priv->chipset < NV_50 || !nvbo->tile_flags)
if (dev_priv->card_type < NV_50 || !nvbo->tile_flags)
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment