Skip to content

Commit

Permalink
drm/nv50: fix page faulting for 128MB page table sizes
Browse files Browse the repository at this point in the history
This seems to be a typo...

Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Marcin Slusarz authored and Ben Skeggs committed Dec 21, 2011
1 parent 13f9012 commit 9e7f96a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/nouveau/nv50_vm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 9e7f96a

Please sign in to comment.