diff options
Diffstat (limited to 'linux-core')
-rw-r--r-- | linux-core/drmP.h | 1 | ||||
-rw-r--r-- | linux-core/drm_drv.c | 1 | ||||
-rw-r--r-- | linux-core/drm_ioctl.c | 2 |
3 files changed, 1 insertions, 3 deletions
diff --git a/linux-core/drmP.h b/linux-core/drmP.h index 08f4faa8..a4751f37 100644 --- a/linux-core/drmP.h +++ b/linux-core/drmP.h @@ -554,7 +554,6 @@ typedef struct drm_device { /* Memory management */ drm_map_list_t *maplist; /* Linked list of regions */ - int map_count; /* Number of mappable regions */ drm_map_t **context_sareas; int max_context; diff --git a/linux-core/drm_drv.c b/linux-core/drm_drv.c index 88d27e15..4a15faec 100644 --- a/linux-core/drm_drv.c +++ b/linux-core/drm_drv.c @@ -316,7 +316,6 @@ static int DRM(setup)( drm_device_t *dev ) if(dev->maplist == NULL) return -ENOMEM; memset(dev->maplist, 0, sizeof(*dev->maplist)); INIT_LIST_HEAD(&dev->maplist->head); - dev->map_count = 0; dev->vmalist = NULL; dev->sigdata.lock = dev->lock.hw_lock = NULL; diff --git a/linux-core/drm_ioctl.c b/linux-core/drm_ioctl.c index 9b1069a1..62d5a6e4 100644 --- a/linux-core/drm_ioctl.c +++ b/linux-core/drm_ioctl.c @@ -197,7 +197,7 @@ int DRM(getmap)( struct inode *inode, struct file *filp, idx = map.offset; down(&dev->struct_sem); - if (idx < 0 || idx >= dev->map_count) { + if (idx < 0) { up(&dev->struct_sem); return -EINVAL; } |