merge linus head to drm-mm branch
authorDave Airlie <airlied@starflyer.(none)>
Sat, 22 Oct 2005 05:25:01 +0000 (15:25 +1000)
committerDave Airlie <airlied@linux.ie>
Sat, 22 Oct 2005 05:25:01 +0000 (15:25 +1000)
drivers/char/drm/drm_vm.c

index e84a787..3f73aa7 100644 (file)
@@ -155,7 +155,7 @@ static __inline__ struct page *drm_do_vm_shm_nopage(struct vm_area_struct *vma,
        offset = address - vma->vm_start;
        i = (unsigned long)map->handle + offset;
        page = (map->type == _DRM_CONSISTENT) ?
-           virt_to_page((void *)i) : vmalloc_to_page((void *)i);
+               virt_to_page((void *)i) : vmalloc_to_page((void *)i);
        if (!page)
                return NOPAGE_OOM;
        get_page(page);