提交 9e7f96aa 编写于 作者: M Marcin Slusarz 提交者: Ben Skeggs

drm/nv50: fix page faulting for 128MB page table sizes

This seems to be a typo...
Signed-off-by: NMarcin Slusarz <marcin.slusarz@gmail.com>
Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
上级 13f90122
......@@ -48,7 +48,7 @@ nv50_vm_map_pgt(struct nouveau_gpuobj *pgd, u32 pde,
phys |= 0x60;
else if (coverage <= 64 * 1024 * 1024)
phys |= 0x40;
else if (coverage < 128 * 1024 * 1024)
else if (coverage <= 128 * 1024 * 1024)
phys |= 0x20;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册