diff options
author | Marcin Slusarz <marcin.slusarz@gmail.com> | 2011-11-06 14:32:06 -0500 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2011-12-21 04:01:31 -0500 |
commit | 9e7f96aa3a4b26db4a0ac49a96a9b55f1685e8b2 (patch) | |
tree | 1f263f8e2b53448736d8a372ddeb0dcbbc3c83e0 /drivers/gpu/drm/nouveau/nv50_vm.c | |
parent | 13f90122e87e30615d0e877337a76bf020c7f043 (diff) |
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>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nv50_vm.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nv50_vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nv50_vm.c b/drivers/gpu/drm/nouveau/nv50_vm.c index 40b84f22d819..6f38ceae3aa4 100644 --- a/drivers/gpu/drm/nouveau/nv50_vm.c +++ b/drivers/gpu/drm/nouveau/nv50_vm.c | |||
@@ -48,7 +48,7 @@ nv50_vm_map_pgt(struct nouveau_gpuobj *pgd, u32 pde, | |||
48 | phys |= 0x60; | 48 | phys |= 0x60; |
49 | else if (coverage <= 64 * 1024 * 1024) | 49 | else if (coverage <= 64 * 1024 * 1024) |
50 | phys |= 0x40; | 50 | phys |= 0x40; |
51 | else if (coverage < 128 * 1024 * 1024) | 51 | else if (coverage <= 128 * 1024 * 1024) |
52 | phys |= 0x20; | 52 | phys |= 0x20; |
53 | } | 53 | } |
54 | 54 | ||