aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/drm/drm_bufs.c
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2007-01-08 21:22:50 +1100
committerDave Airlie <airlied@linux.ie>2007-02-08 13:24:25 +1100
commitf239b7b0cac0682d582949087710a9663b1300d5 (patch)
treeafe4859fed4da0b1363e6027b47a0f17a273d1b8 /drivers/char/drm/drm_bufs.c
parentvia: allow for npot texture pitch alignment (diff)
downloadlinux-dev-f239b7b0cac0682d582949087710a9663b1300d5.tar.xz
linux-dev-f239b7b0cac0682d582949087710a9663b1300d5.zip
drm: use vmalloc_user instead of vmalloc_32 for DRM_SHM
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to '')
-rw-r--r--drivers/char/drm/drm_bufs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/drm/drm_bufs.c b/drivers/char/drm/drm_bufs.c
index 9f65f5697ba8..1f74fb49fa78 100644
--- a/drivers/char/drm/drm_bufs.c
+++ b/drivers/char/drm/drm_bufs.c
@@ -182,7 +182,7 @@ static int drm_addmap_core(drm_device_t * dev, unsigned int offset,
break;
case _DRM_SHM:
- map->handle = vmalloc_32(map->size);
+ map->handle = vmalloc_user(map->size);
DRM_DEBUG("%lu %d %p\n",
map->size, drm_order(map->size), map->handle);
if (!map->handle) {