summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--linux-core/drm_vm.c3
-rw-r--r--linux/drm_vm.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/linux-core/drm_vm.c b/linux-core/drm_vm.c
index f13db00b..46eaf569 100644
--- a/linux-core/drm_vm.c
+++ b/linux-core/drm_vm.c
@@ -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;
diff --git a/linux/drm_vm.h b/linux/drm_vm.h
index f13db00b..46eaf569 100644
--- a/linux/drm_vm.h
+++ b/linux/drm_vm.h
@@ -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;