merge linus head to drm-mm branch

This commit is contained in:
Dave Airlie 2005-10-22 15:25:01 +10:00 committed by Dave Airlie
parent 23bfc1a339
commit 5fb4dc9bf5
1 changed files with 1 additions and 1 deletions

View 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);