diff options
author | Ben Skeggs <skeggsb@gmail.com> | 2007-07-09 23:58:00 +1000 |
---|---|---|
committer | Ben Skeggs <skeggsb@gmail.com> | 2007-07-09 23:58:00 +1000 |
commit | 023f7d9c0064f912415c92a85c3a9d722191909f (patch) | |
tree | ede9cad2e9bef02aa4949abbe82a30ede1c5ba54 /shared-core/nouveau_notifier.c | |
parent | 31e33813e8c1b085683e68524e680882368e59a9 (diff) |
nouveau: Allocate mappable VRAM for notifiers..
Diffstat (limited to 'shared-core/nouveau_notifier.c')
-rw-r--r-- | shared-core/nouveau_notifier.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared-core/nouveau_notifier.c b/shared-core/nouveau_notifier.c index 9e792e57..30216293 100644 --- a/shared-core/nouveau_notifier.c +++ b/shared-core/nouveau_notifier.c @@ -41,6 +41,7 @@ nouveau_notifier_init_channel(drm_device_t *dev, int channel, DRMFILE filp) flags = NOUVEAU_MEM_AGP | NOUVEAU_MEM_FB_ACCEPTABLE; else flags = NOUVEAU_MEM_FB; + flags |= NOUVEAU_MEM_MAPPED; chan->notifier_block = nouveau_mem_alloc(dev, 0, PAGE_SIZE, flags,filp); if (!chan->notifier_block) |