mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
drm/nv50: fix page faulting for 128MB page table sizes
This seems to be a typo... Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
13f90122e8
commit
9e7f96aa3a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue