doh.. that makes no sense.. thinko in removal of OS_HAS_AGP

main
Dave Airlie 2004-09-04 13:15:40 +00:00
parent 8825579f1c
commit 3d9e16aa6e
2 changed files with 4 additions and 2 deletions

View File

@ -59,7 +59,8 @@ static __inline__ struct page *DRM(do_vm_nopage)(struct vm_area_struct *vma,
/*
* Find the right map
*/
if (!(dev->agp && DRIVER_USE_AGP)) goto vm_nopage_error;
if (!drm_core_check_feature(dev, DRIVER_USE_AGP))
goto vm_nopage_error;
if(!dev->agp || !dev->agp->cant_use_aperture) goto vm_nopage_error;

View File

@ -59,7 +59,8 @@ static __inline__ struct page *DRM(do_vm_nopage)(struct vm_area_struct *vma,
/*
* Find the right map
*/
if (!(dev->agp && DRIVER_USE_AGP)) goto vm_nopage_error;
if (!drm_core_check_feature(dev, DRIVER_USE_AGP))
goto vm_nopage_error;
if(!dev->agp || !dev->agp->cant_use_aperture) goto vm_nopage_error;