summaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorMarcin Slusarz <marcin.slusarz@gmail.com>2012-04-15 14:36:07 +0200
committerBen Skeggs <bskeggs@redhat.com>2012-05-24 16:31:52 +1000
commitd37f60c87fbf9dca6724ed42fd55b031f88dd46a (patch)
tree2b6bb35f2a8e93f957503ec32103d72496dd3ae8 /drivers/gpu
parentd8b6624549342e4b01a5fa8273029d9139439ae4 (diff)
downloadlinux-stable-d37f60c87fbf9dca6724ed42fd55b031f88dd46a.tar.gz
linux-stable-d37f60c87fbf9dca6724ed42fd55b031f88dd46a.tar.bz2
linux-stable-d37f60c87fbf9dca6724ed42fd55b031f88dd46a.zip
drm/nv50: fix ramin heap size for kernel channel too
Port change from "drm/nouveau: Keep RAMIN heap within the channel" to kernel channel, which has its own ramin heap initialisation. Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Younes Manton <younes.m@gmail.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/nouveau/nv50_instmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nv50_instmem.c b/drivers/gpu/drm/nouveau/nv50_instmem.c
index a7c12c94a5a6..0bba54f11800 100644
--- a/drivers/gpu/drm/nouveau/nv50_instmem.c
+++ b/drivers/gpu/drm/nouveau/nv50_instmem.c
@@ -83,7 +83,7 @@ nv50_channel_new(struct drm_device *dev, u32 size, struct nouveau_vm *vm,
return ret;
}
- ret = drm_mm_init(&chan->ramin_heap, 0x6000, chan->ramin->size);
+ ret = drm_mm_init(&chan->ramin_heap, 0x6000, chan->ramin->size - 0x6000);
if (ret) {
nv50_channel_del(&chan);
return ret;